function jqopenwin1(Ftitle,Furl,Fwidth,Fheight){
	if(!Fwidth||Fwidth=="")Fwidth=800;
	if(!Fheight||Fheight=="")Fheight=500;
	$.XYTipsWindow({
		___title:Ftitle,
		___content:"iframe:"+Furl+"&"+new Date(),
		___width:Fwidth,
		___height:Fheight,
		___drag:"___boxTitle",
		___showbg:true
	});
}


function jqopenwin(Ftitle,linkurl,width,height,left,top,resiz)
{
	try
	{
		//parent.Ext.getBody().mask();
	}
	catch (e)
	{
	}
	if(!width||width=="")width=800;
	if(!height||height=="")height=500;
	if((!left||left=="")&&left!="0")
	{
		left=(screen.availWidth-width)/2;
	}
	if((!top||top=="")&&top!="0")top=(screen.availHeight-height)/2
	if(!resiz||resiz==""){resiz="yes";}else{resiz="no";}
	window.open (linkurl,'_blank','width='+width+',height='+height+',left='+left+',top='+top+'location=no,menubar=no,resizable='+resiz+',status=no,titlebar=no,toolbar=no')
}


function funshowModelessDialog(linkurl,arguement,width,height)
{
  var a=window.showModelessDialog(linkurl,arguement,'status=0;resizable=1;help=0;dialogWidth='+width+';dialogHeight='+height)
}
function funshowModelessDialog1(linkurl,arguement,width,height)
{
  var a=window.showModelessDialog(linkurl,arguement,'scroll=0;status=0;resizable=1;help=0;dialogWidth='+width+';dialogHeight='+height)
}


