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="index.html";
	win.focus();
		  
} 


function NewWindowZip()
{
	var winName,w,h;
	var scroll='yes';
	myUrl='http://www.israelpost.co.il/zipcode.nsf/demozip';
	w=600;
	h=500;

	
	/*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=yes';
	win = window.open(myUrl,winName,settings); 
		  
}

function NewWindowFaq()
{
	var winName,w,h;
	var scroll='no';
	myUrl='faq/faq_1.html';
	
	w=600;
	h=300;

	/*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();
		  
}
