<!-- hide from older browsers

function openWindow(url,width,height)
{
	var params="left=5,top=5,menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,dependent,width="+width+",height="+height;
	
	popupWin = window.open(url, 'remote', params);
	popupWin.window.focus();
}

// -->