﻿var WindowObjectReference;
/* Declaring a global variable which will store
 a reference to the new window to be created */

function OpenNew(PopupURL) 
{
WindowObjectReference = window.open(PopupURL,null,
    "height=500,width=600,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
}

