<!--
var newwin;

function extraWins(uRL,windowName,windowWidth,windowHeight,reSizeable,scroll,fullscreen){
	var addMe;
	newwin = window.open(uRL, windowName ,'toolbar=no, scrollbars='+scroll+',location=no,directories=no,status=yes,menubar=yes,resizable='+reSizeable+',width='+windowWidth+',height='+windowHeight+',fullscreen='+fullscreen);
	if (newwin) {newwin.focus()};
	}	
	
function closeDown(){
	self.close()
	}
			
//-->