function showStaticWindow(url, w, h)
{
	hWnd = window.open("", "", 'toolbar=0,location=0,directories=0,status=0,menubar=0,width=' + w + ',height=' + h + ',left=' + (screen.availWidth - w) / 2 + ',top=' + (screen.availHeight - h) / 2);
	hWnd.resizeTo(w, h + 40);
	hWnd.focus();
	hWnd.location.href=""+url;
}


function showWindow(url, w, h)
{
	hWnd = window.open("", "", 'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrollbars=1,width=' + w + ',height=' + h + ',left=' + (screen.availWidth - w) / 2 + ',top=' + (screen.availHeight - h) / 2);
	hWnd.resizeTo(w, h + 40);
	hWnd.focus();
	hWnd.location.href=""+url;
}

