//
//	Opens a new browser window
//
function openWindow(winame,file,height,width) {
	itemWindow = window.open(file,winame,"status=no,scrollbars=no,toolbar=no,location=no,menu=no,resizable=yes,width="+width+",height="+height);
	itemWindow.moveTo(0,0);
}





