// Open window
function openWindow(site,name,left,top,width,height,scroll) {
	if (left=="middle") {
		var varx = ((window.screen.width/2) - (width/2))-12;
	} else {
		var varx = left;
	}
	if (top=="middle") {
		var vary = ((window.screen.height/2) - (height/2));
	} else {
		var vary = top;
	}
	window.open(site,name,"width="+width+",height="+height+",left="+varx+",top="+vary+",location=no,toolbar=no,directories=no,status=no,scrollbars="+scroll+",resizable=no,copyhistory=no,menubar=no");
}

// Popup
function enlarge(i) {
	openWindow("enlarge.asp?id="+i,"popup","middle","middle","450", "637","no");
}

// Flash maker v2
function prntFlash(a,b,c,d,e,f,g) {
	if (check.flash >= c) {
		var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+a+'" height="'+b+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
		+ '<param name="movie" value="'+d+'.swf" /><param name="FlashVars" value="'+e+'" /><param name="loop" value="true" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="wmode" value="'+f+'" />'
		+ '<embed src="'+d+'.swf" flashvars="'+e+'" name="movie" loop="true" menu="false" quality="high" width="'+a+'" height="'+b+'" wmode="'+f+'" scale="noscale" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>';
		document.write(oeTags);
	} else {
		document.write(g);
	}
}