// Full Window
function fullopen(strURL) {
	var options;
    if (navigator.appName.charAt(0)=='M')
        options = "scrollbars=0,resizable=1,toolbar=0,menubar=0,location=0,directories=0,status=0,left=0,top=0"
                + ",width=" + screen.width
                + ",height=" + screen.height;
    else if (navigator.appName.charAt(0)=='N')
        options = "scrollbars=0,resizable=1,left=0,top=0"
                + ",width=" + screen.width
                + ",height=" + screen.height;
    
    var winobj = window.open(strURL, "", options);
    winobj.moveTo(0, 0);
}
