function OpenFullScreenWindow(sURL)
{
	var iWidth = 0 ;
	var iHeight = 0 ;
	iWidth=window.screen.availWidth-10;
	iHeight=window.screen.availHeight-50;
	var szFeatures = "" ;
	//szFeatures ="width=" + iWidth + ",height=" + iHeight + ",top=0,left=0,location=no,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes,directories=yes";
	
	//szFeatures ="width=" + iWidth + ",height=" + iHeight + ",top=0,left=0,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes,directories=yes";
	
	window.open(sURL,"",szFeatures);			
}

function OpenNewWindow(sURL)
{
	alert(sURL);
	var iWidth = 0 ;
	var iHeight = 0 ;
	iWidth=window.screen.availWidth-10;
	iHeight=window.screen.availHeight-50;
	var szFeatures = "" ;
	szFeatures ="width=" + iWidth + ",height=" + iHeight + ",top=0,left=0,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no";
	alert(sUrl);
	window.open(sURL,"",szFeatures);			
}

function OpenNewWindow(sURL,w,h)
{
	var iWidth = 0 ;
	var iHeight = 0 ;
	iWidth=window.screen.availWidth-10;
	iHeight=window.screen.availHeight-50;
	var szFeatures = "" ;
	szFeatures ="resizable=yes,status=yes,menubar=no,scrollbars=yes,width=" + iWidth*w + ",height=" + iHeight*h + ",top=0" +  ",left=0";		
	window.open(sURL,"",szFeatures);
}

function OpenNewWindow(sURL,w,h,l,t)
{	
	var szFeatures = "" ;
	szFeatures ="resizable=no,status=no,menubar=no,scrollbars=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,directories=no,width=" + w + ",height=" + h + ",top=" + t +",left=" + l + "";			
	window.open(sURL,"",szFeatures);
}

function OpenSizebleNewWindow(sURL,w,h,l,t)
{	
	var szFeatures = "" ;
	szFeatures ="resizable=yes,status=no,menubar=no,scrollbars=yes,width=" + w + ",height=" + h + ",top=" + t +",left=" + l + "";			
	window.open(sURL,"",szFeatures);
}

function ShowModalDialog(webFormUrl)
{	
	var iWidth = 0 ;
	var iHeight = 0 ;
	iWidth=window.screen.availWidth-10;
	iHeight=window.screen.availHeight-50;
	var szFeatures = 'dialogWidth:'+iWidth+';dialogHeight:'+iHeight+';dialogLeft:0px;dialogTop:0px;center:yes;help=no;resizable:no;status:no;scroll=yes';
	showModalDialog(webFormUrl,"",szFeatures);	
}

function ShowModalDialog(webFormUrl,width,height,left,top)
{		
	var szFeatures = 'dialogWidth:'+width+';dialogHeight:'+height+';dialogLeft:'+ left +';dialogTop:' + top + ';help=no;status:no;scroll=yes;center:yes';
	showModalDialog(webFormUrl,"",szFeatures);	
}



function ReplaceParentWindow(parentWindowUrl)
{	
	var iWidth = 0;
	var iHeight = 0;
	iWidth=window.screen.availWidth-10;
	iHeight=window.screen.availHeight-50;
	var szFeatures = "dialogWidth:"+iWidth+";dialogHeight:"+iHeight+";dialogLeft:0px;dialogTop:0px;center:yes;help=no;resizable:no;status:no;scroll=yes";
	this.parent.location.replace(parentWindowUrl,"",szFeatures);	
}
