<!--
// Rollover - This swaps the normal state image with the over state image
// You must put the name value into the image tage
function change(name,file) {
  if (document.images)
    eval('document.images["'+name+'"].src="'+file+'"')
}

// Open Window Square
var newwindow = '';

	function popitupsquare(url, name, size) {
		if (!newwindow.closed && newwindow.location) {
			newwindow.location.href = url;
		}
		else {
			newwindow=window.open(url,name,'width='+size+',height='+size+'');
			if (!newwindow.opener) newwindow.opener = self;
		}
		if (window.focus) {newwindow.focus()}
		return false;
	}

//-->
