﻿function show_Object(data,width,height)
{
	document.write('<object type="application/x-shockwave-flash" data="'+data+'" width="'+width+'" height="'+height+'">');
	document.write('<param name="movie" value="'+data+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('</object>');
}

function newWin(url,width,height)
{
	var left = screen.availWidth/2 - width/2;
	var top = screen.availHeight/2 - height/2;
	activeModalWin = window.open(url,"_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizeable=no, copyhistory=no, left="+left+", top="+top+", width="+width+", height="+height);
	window.onfocus = function(){if (activeModalWin.closed == false){activeModalWin.focus();};};
}
