// hide status bar
function hidestatus() {
	window.status=''
	return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
// open window function
function window_open(page, name, x, y) {
	newWindow = window.open(page,name,'scrollbars=yes,width='+x+',height='+y+',left=50,top=100');
	newWindow.focus(); 
	
}


