﻿// JScript File

function popMe(mypage, myname, w, h) 
{

winprops = 'height='+h+',width='+w+',top=0,left=50,scrollbars=yes,resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
function SendFile(value)
{

		var AppURL;
		AppURL = 'SendFile.aspx?file=' + value + '';
		window.open(AppURL,'',"toolbar=no,scrollbars=no,height=350,width=250,left=156,top=192,resizable=no,status=no");
}

function popMeNew(mypage, myname, w, h) 
{

winprops = 'height='+h+',width='+w+',top=0,left=70,scrollbars=yes,resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function printpopup(mypage, myname, w, h) 
{
winprops = 'toolbar=no,height=400,width=500,left=100,top=300,scrollbars=no,resizable=0'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
