PositionX = 100;
PositionY = 100;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 500;
defaultHeight = 500;

// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;

function openDisclaimer(url, email)
{
	window.open(url + '?email=' + email, '', 'scrollbars=no,width=520,height=420,left='+PositionX+',top='+PositionY);
}

function openWin(location, windowSize)
{
	
	var myBars = 'directories=yes,location=yes,menubar=yes,status=yes,titlebar=yes,toolbar=yes,scrollbars=yes,';
	var options = myBars + windowSize + ',resizable=no';
	
	window.open(location, 'SEAnimalHospital', options);	
	
}