<!--
 
window.name="original_container";
 
function closeWindow() {
	window.NewWindow.close();
}
 
function popup1 (Flash_ID) {
	// Width & Height of your Flash Document
var sx = 800;
var sy = 600;
	// Position the window in the Middle of the Screen
var winl = (screen.width-sx)/2;
var wint = (screen.height-sy)/2;
	// URL Parser
if (Flash_ID == 1) {
	var flash_file_id="http://solutions.3m.com/3MContentRetrievalAPI/BlobServlet?locale=en_US&lmd=1245966435000&assetId=1175499785676&assetType=MMM_Image&blobAttribute=ImageFile";
} 
var flash_insert="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+sx+"' height='"+sy+"'><param name='movie' value='"+flash_file_id+"'><param name=quality value=high><embed src='"+flash_file_id+"' quality=high pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='"+sx+"' height='"+sy+"'></embed></object>";
					
popupwin=window.open("","NewWindow","toolbar=no,location=no,scrollbars=no,directories=no,status=no,menubar=no,top="+wint+",left="+winl+",width="+sx+",height="+sy+"");
popupwin.document.write("<HTML><HEAD><TITLE>SmartClip&#8482; Self-Ligating Appliance System</TITLE><style type='text/css'> HTML, BODY { overflow: hidden; margin:0;padding:0;color:#fff } </style></HEAD>"+flash_insert+"</HTML>");
popupwin.document.close();
}
 
-->
