//for open vidio's
var win = null;

function NewWinIM(mypage,myname,compname)
{
	var embedcode = '<div align="center"><embed id="VideoPlayback" style="width:400px;height:326px" allowFullScreen="true" src="http://video.google.com/googleplayer.swf?docid='+mypage+'&hl=en&fs=true"  type="application/x-shockwave-flash"> </embed></div>';
	LeftPosition = (screen.width) ? (screen.width-400)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-326)/2 : 0;
	
	var settings = 'width=440';
	settings += ', height=366';
	settings += ', top='+TopPosition+', left='+LeftPosition;
	settings += ', directories=no';
	settings += ', location=no';
	settings += ', menubar=no';
	settings += ', resizable=no';
	settings += ', scrollbars=no';
	settings += ', status=no';
	settings += ', toolbar=no';
	
	win = window.open("",myname,settings);
	win.document.write('<HTML><HEAD><TITLE>'+compname+' Video</TITLE></HEAD><BODY BGCOLOR="#000000"><DIV style="color:white;font-size:11px;font-family:arial" align="center">Video by '+compname+'</DIV>'+embedcode+'</BODY></HTML>');
}
-->
