XQ Series WebView
var w = 1018;
var h = 714;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
document.write("> Screen resolution! ");
document.write(screen.width+"X"+screen.height+"
");
if(screen.width >= 1024 && screen.height >= 768)
{
prop = 'menubar=0,toolbar=0,directories=0,scrollbars=0,status=0,location=0,left='+winl+',top='+wint+',width='+w+',height='+h+',resizable=0';
var popup = window.open("XQWebBody.html", "XQWebView", prop);
if(popup == null)
document.write("Error!!! Blocked popup.");
else
document.write("Open...");
}
else
document.write("Error!!! This site is optimized for 1024x768 screen resolution or higher.");