	   function ow(name,h,w,a) { 
	   openwindow (name,h,w,a);
		}
	
	function owf(h,w)	{
		openwindowf(h,w);
		}
	
	function openwindow(name,h,w,a)  {
/*		strname = "dafMakdim_Link" + cstr(name) + ".aspx"; */
		strname = "dafMakdim_Link" + String(name) + ".aspx";
/*		select case name
			case 3
				scrl = "no"
			case 1
				scrl = "yes"
		end select; */
		var scrl;
			switch (name) {
				case 3 :
				   scrl = "0";
				   break;
				case 1,2,4 :
				   scrl = "1";
				   break;
			}				   
	/*
		x = (window.screen.availwidth - w) / 2 ;
		if window.screen.availheight > h then
			y = (window.screen.availheight - h) / 2
		else
			y = 0
		end if

		str = "dialogHeight:" & h & "px; dialogWidth: " & w & "px; dialogLeft: " & x & "px; dialogTop: " & y & "px; status: No; scroll:" & scrl  ;
		window.showmodaldialog strname,	0, cstr(str);
*/
		x = (window.screen.availwidth - w) / 2 ;
		if (window.screen.availheight > h) {
			y = (window.screen.availheight - h) / 2;
		}
		else	{
			y = 0;
		}
		str = "dialogHeight:" + h + "px; dialogWidth: " + w + "px; dialogLeft: " + x + "px; dialogTop: " + y + "px; status: No; scroll:" + scrl  ;
//		window.open(strname);
		window.showModelessDialog(strname,a,str);
		
		}
	
	function openwindowf(h,w) 
	{
		window.open("siurMudrach.aspx","myWindow");
	}			
	

