function popshot(windowname,gif,w,h)
	{
	    var feat='toolbar=no,resizable=yes,menubar=no,width='+w+',height='+h+',status=no,left=0,screenX=0,top=0,screenY=0,location=no,scrollbars=yes,directories=no';
	    var popshot=null;
	    popshot=window.open('', 'popshot',feat);
	    popshot.document.write('<HTML>');
	    popshot.document.write('<HEAD>');
	    popshot.document.write('<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	    popshot.document.write('<TITLE>Business Functions Screenshot: '+windowname+'</TITLE>');
	    popshot.document.write('<BODY style="margin: 0em;padding: 0em;border: none;" onload=window.focus()>');
	    var imgsrc="'"+gif+"'";
	    popshot.document.write('<IMG style="" src='+imgsrc+'>');
	    popshot.document.write('</BODY></HTML>');
	    popshot.document.close();
	}
function popdemo(windowname,swf,w,h)
{
	var demo=null;
	content="";
	alert(3);
	content=content+'<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><style>body,html{margin:0;padding:0;}</style></head><body>';
	content=content+'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="1024" height="768">';
	content=content+'<param name=movie value="'+swf+'">';
	content=content+'<param name=quality value=high>';
	content=content+'<embed src="'+swf+'" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="1024" height="768">';
	content=content+'</embed></object>';
	content=content+'</body></html>';
	demo=window.open("","demo","resizable=1,scrollbars=1,left=0,top=0,menubar=no,status=no,toolbar=no,height="+h+",width="+w);
	demo.document.write(content);
}