﻿// JScript File

function jsLoad() {
    if (document.getElementById("HiddenField1").value == '') {
        openWindow('Events.htm');        
    }    
}

function openWindow(url) {

    var wWidth = 400;
    var wHeight = 350;
    var wLeft = (window.screen.width/2) - wWidth/2;
    var wTop = (window.screen.height/2) - (wHeight/2);

	vWindow = window.open(url, 'vanderbilt_window', 'location=no,menubar=no,toolbar=no,resizable=no,scrollbars=no,width='+wWidth+',height='+wHeight+',left='+wLeft+',top='+wTop);
	if (vWindow.opener == null) vWindow.opener = self;
	if (window.focus) {vWindow.focus()}
}