﻿// JScript File

var newwindow;
function popNew(url,h,w)
{
	newwindow=window.open(url,'name',"height="+h+",width="+w+",scrollbars=yes");
	if (window.focus) {newwindow.focus()}
	
}
