﻿// JScript File

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'_popup','height=300,width=400');
	if (window.focus) {newwindow.focus()}
}

function poptastic(url, height,width)
{
	newwindow=window.open(url,'_popup','height='+height+',width='+width);
	if (window.focus) {newwindow.focus()}
}
