<!--

var aWindow ="";
var aWinOpened = false;
var count = 1;

function allWinClose(){

if(aWinOpened){
aWindow.close();
aWinOpened = false;
}

}

function openEnlarge(URL) {
	allWinClose(); 
	aWindow = window.open(URL,"","toolbar=no,location=no,width=400,height=400,status=yes,scrollbars=yes,resizable=yes,menubar=no,top=200,left=150");
	aWinOpened = true;
	if(count==1){
	allWinClose(); 
	aWindow = window.open(URL,"","toolbar=no,location=no,width=400,height=400,status=yes,scrollbars=yes,resizable=yes,menubar=no,top=200,left=150");
	aWinOpened = true;
	}
	count++;
}
//-->
