// JavaScript Document

function doNothing(){}

var newwindow = ''
function popitup(url,w,h) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url;
    newwindow.focus(); }
else
	{
    newwindow=window.open(url,'htmlname','width='+w+',height='+h+',resizable=0, left=300, top=230')
	}

}

var newwindow = ''
function popitup2(url,w,h) {
if (newwindow.location && !newwindow.closed) {
	newwindow.location.href = url;
	newwindows.focus(); }
else
	{
	newwindow=window.open(url,'htmlname','width='+w+',height='+h+',resizable=0, left=300, top=230')
	}

}

