function openWin(w,h,news) {
	
	myWin = open("", "_blank", "width="+w+",height="+h+",status=no,toolbar=no,menubar=no,location=no,directories=no,copyhistory=no;");
	  
	// open document for further output
	myWin.document.open();


	// create document
	myWin.document.write("<html><head><title>חדשות");
	myWin.document.write("</title></head><body background=images/bc.png>");
	myWin.document.write("<div align=right dir=rtl>");
	myWin.document.write(news);
	myWin.document.write("</div>");
	myWin.document.write("</body></html>");
  
	myWin.focus();

	// close the document - (not the window!)
	myWin.document.close();
}

function openWinEn(news) {
 
	myWin = open("", "_blank", "width=300,height=200,status=no,toolbar=no,menubar=no,location=no,directories=no,copyhistory=no;");

	
	  
	// open document for further output
	myWin.document.open();


	// create document
	myWin.document.write("<html><head><title>News");
	myWin.document.write("</title></head><body background=images/bc.png>");
	myWin.document.write("<div align=left dir=ltr>");
	myWin.document.write(news);
	myWin.document.write("</div>");
	myWin.document.write("</body></html>");
  
	myWin.focus();

	// close the document - (not the window!)
	myWin.document.close();
}


