﻿// JScript File

/*
Pop Up New Window
Author: Narayan Chand Thakur
Source: http://ncthakur.itgo.com/
*/
<!--
function PopupImg(strOpen) {
var sWindowname = new String(Math.floor(Math.random()  *1000000));
var sWindowFeatures = "directories=0,fullscreen=0,location=0,menubar=0,resizable=no,scrollbars=no,status=1, width=350, height=300, top=100, left=300"

var hPopUp = window.open(strOpen, sWindowname, sWindowFeatures, false);
}

function closeIt(strOpen){
hPopUp.close(strOpen);
}
//-->
