function getIt(url,w,wdth,hght){
	if(!url) return;
	switch(w){
		case "i":
			var block=document.getElementById("plzwait");
			if(!block) return;
			var delta=document.body.scrollTop;
			if(delta)
				block.style.top=(parseInt(block.style.top)+delta)+"px";
			block.style.display="";
			window.location=url;
			break;
		case "n":
		default:
			var sHTML="";
			var lwin=window.open('','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,top=100,left=100,width='+wdth+',height='+hght);
			lwin.document.open();
			//
			sHTML+="<HTML><HEAD>";
			sHTML+="<style>.text{font-size:11px;font-family:tahoma;color:#ffffff}</style>";
			sHTML+="<scr"+"ipt language='javascript'>function getURL(u)\n{\nwindow.location=u;\n}\n</scr"+"ipt>";
			sHTML+="</HEAD><BODY onload=getURL('"+url+"') dir='rtl'><center>";
			sHTML+="<table width='150' height='50' style='border:1px dashed #870064' border='0' cellpading='0' cellspacing='0'><tr bgcolor='#870064' height='50'><td class='text' align='center'>&#1583;&#1585;&#1581;&#1575;&#1604; &#1583;&#1585;&#1610;&#1575;&#1601;&#1578; &#1575;&#1591;&#1604;&#1575;&#1593;&#1575;&#1578; ...</tr></table>";
			sHTML+="</center></BODY></HTML>";
			lwin.document.write(sHTML);
			//
			lwin.document.close();
	}
}
