function popupScript(name, w, h){
	var newwin = window.open('index.html','','width='+(w+30)+',height='+(h+30));
	newwin.document.write('<HTML><HEAD><TITLE>Sample</TITLE>');
	newwin.document.write('<link href="styles/main.css" rel="stylesheet" type="text/css" /></HEAD>');
	newwin.document.write('<BODY class="popup"><div id="sample"><img border="0" src="http://www.cheryldyer.com/img/scripts/samples/'+name+'" /></div>');
	newwin.document.write('</BODY></HTML>');
	newwin.document.close()
}

function popupMovie(url, w, h){
	var newwin = window.open('index.html','','width='+(w+30)+',height='+(h+30));
	newwin.document.write('<HTML><HEAD><TITLE>Movie</TITLE>');
	newwin.document.write('<link href="styles/main.css" rel="stylesheet" type="text/css" /></HEAD>');
	newwin.document.write('<BODY class="popup"><div id="sample">');
        newwin.document.write('<embed style="width:'+w+';height:'+h+'" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src="'+url+'" allowScriptAccess="sameDomain" quality="best" bgcolor="#ffffff" scale="noScale" wmode="window" salign="TL"  FlashVars="playerMode=embedded"></embed>');
        newwin.document.write('</div>');
	newwin.document.write('</BODY></HTML>');
	newwin.document.close()
}