function NewWindow(myUrl)
{
	var winName,w,h;
	var scroll='no';
	if(document.all)
	{
		w=530;
		h=420;
	}
	else
	{
		w=550;
		h=470;
	}
		winName="thanx";    
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
    settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no';
	win = window.open(myUrl,winName,settings); 
	window.location.href="home.html";
	win.focus();
		  
} 


function NewWindowZip()
{
	var winName,w,h;
	var scroll='yes';
	myUrl='http://www.postil.com/mikud_ne.nsf/zip?openform';
	if(document.all)
	{
		w=470;
		h=180;
	}
	else
	{
		alert("sorry, we don't support Netscape");
	}
	winName="zip";    
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
    settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no';
	win = window.open(myUrl,winName,settings); 
		  
}

function NewWindowFaq()
{
	var winName,w,h;
	var scroll='no';
	myUrl='faq.html';
	if(document.all)
	{
		w=300;
		h=340;
	}
	else
	{
		alert("sorry, we don't support Netscape browser");
		return;
	}
	winName="faq";    
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
    settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no';
	win = window.open(myUrl,winName,settings); 
	win.focus();
		  
}