function imageDownloadWindow(swf) {
    wleft = (screen.width - 600) / 2;
    wtop = (screen.height - 400) / 2;
    var w = window.open('',
        'downloadwindow', 
        'top=' + wtop + ', left=' + wleft + ', width=382, height=330, status=no, resizable=no, location=no, directories=no menubar=no, scrollbars=no, toobar=no'
    );
    var d = w.document;
    d.write(	
				'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
				+ '<html xmlns="http://www.w3.org/1999/xhtml">'
				+ '<head>'
				+ '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'
				+ '<title>Colgate | How To Have a Bright Smile</title>'
				+ '<style type="text/css">'
				+ '#flashDiv { margin:20px; }'
				+ '</style>'
				+ '<!--[if lte IE 7]>'
				+ '<style type="text/css">'
				+ '#flashDiv { margin:9px 10px 9px 10px;  }'
				+ '</style>'
				+ '<![endif]-->'
				+ '</head>'
				+ '<body>'
				+ '<div align="center">'
				+ '<div id="flashDiv">'
				+ '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="330" height="290" title="hh">'
				+ '<param name="movie" value="'
				+ swf
				+ '">'
				+ '<param name="quality" value="high">'
				+ '<embed src="'
				+ swf
				+ '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="330" height="290"></embed>'
				+ '</object>'
				+ '</div>'
				+ '</div>'
				+ '</body>'
				+ '</html>'
			);
    d.close();
}