var win = null;
function NewWindow(mypage,myname,w,h,scroll)
{
var embedcode = '<embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid='+mypage+'&hl=en&fs=true&autoPlay=true" style="width:455px;height:355px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"> </embed>';
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable';
win = window.open("",myname,settings);
win.document.write('<HTML><HEAD><TITLE>IndiaMART Videos</TITLE></HEAD><BODY BGCOLOR="#000000">'+embedcode+'</BODY></HTML>');
}