function openWindow(address, width, height)
{
	var w=window.open(
	address,
/*
	"_blank",
	"location=no, menubar=no, status=no, toolbar=no, resizable=yes");
	w.resizeTo(width, height);
*/	
	"","channelmode=no,toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizeable=yes,width=700,height=540,top=5,left=5");
//	w.moveTo(0,0);                          
	w.focus();
}
