function openDeepLink( MyURL )
{
if( !window.focus )
return;
var windowName 	= "";	
var winWidth 		= 352;
var winHeight 	= 288;
var myBigWin=window.open( "", windowName,"left=5,top=5,height=" + winHeight + ",width=" + winWidth + ",dependent=no,scrollbars=yes,toolbar=no,location=no, directories=no, status=no, menubar=no, resizable=no" );
myBigWin.location = MyURL;
myBigWin.focus();
}
