function popUpSwf(swf,x,y,xWin,yWin,title,scroll) {
	settings = 'height='+yWin+',width='+xWin+',top=20,left=20,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scroll+',resizable=0';

	win = window.open('','NewWindowImg',settings)
	win.document.open('text/html')
	win.document.write('<title>'+title+'</title>');
	win.document.write('<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	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,0,0" WIDTH="'+x+'" HEIGHT="'+y+'" id="swf" ALIGN=""><PARAM NAME=movie VALUE="'+swf+'"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="'+swf+'" quality=high bgcolor=#FFFFFF  WIDTH="'+x+'" HEIGHT="'+y+'" NAME="index" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>');
	win.document.writeln('</body>');
	win.document.close();
}

