// This is the implementation of popups
// by Wendy Wyman
// Version 1.0 - July 25, 2007
//
// Include this script on your page
// then make image rollovers simple like:
// <a href="openpopup('/dealers/results.asp?state=HI',500)" >
//
// 

function openpopup(URL,intSize)
 {
   mywindow = window.open (URL,"results","location=1,toolbar=0,menubar=0,status=0,scrollbars=1,resizeable=1,width=" + intSize + ",height=400");
 }

function popupform(myform, windowname)
{
	if (! window.focus)return true;
	window.open('', windowname, 'location=1,status=1,scrollbars=1,resizeable=1,width=500,height=400');
	myform.target=windowname;
	return true;
}
