function openWindow(url,width,height,name,options)
{
	if (! options > '')
		options = "Toolbar=0,resizable=yes,menubar=0,location=0,directories=0,left=100,top=100,scrollbars=yes"
	options = "width="+width+",height="+height+","+options;
	newWindow = window.open( url, name,options);
	newWindow.focus();
}
