var newwindow;
function openWindow(url)
{
	newwindow=window.open(url,'name','height=500,width=600,left=0,top=0,resizable=no,scrollbars=yes,toolbar=no,status=no');

	if (window.focus) {newwindow.focus()}
}
