// JavaScript Document

function openW(filename,w,h) {
	
	if(screen.width) {
		var winl = (screen.width-w)/2;
		var wint = (screen.height-h)/2;
	}
	else {
		winl = 0;wint =0;
	}
	
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
		
	var settings = 'height=' + h + ',';
	settings += 'width=' + w + ',';
	settings += 'top=' + wint + ',';
	settings += 'left=' + winl + ',';
	
	win = window.open(filename,"Reynolds",settings);
	win.document.open();
	win.document.write('<html><head><title>The Reynolds Company</title>'); 
	win.document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
	win.document.write('<style type="text/css"><!-- ');
	win.document.write('body { margin:0px; }');
	win.document.write(' --></style>');
	win.document.write('</head>');
	win.document.write('<body bgcolor="#FFFFFF">');
	win.document.write('<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="100%" height="100%"><param name="movie" value="/images/video/'+filename+'.swf"><param name="quality" value="high"><embed src="images/video/'+filename+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" scale="noborder" type="application/x-shockwave-flash" width="100%" height="100%"></embed></object>');
	win.document.write('</body>');
	win.document.write('</html>');
	win.document.close();
	win.window.focus();
	
}
