<!-- 
	if (parent.frames.length > 0) {
	    parent.location.href = self.document.location
	}
		
	function winOpen(url, w, h) {
		var winNew
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		winNew = window.open(url, null, 'toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width=' + w + ',height=' + h +',top=' + wint + ',left='+ winl);
		winNew.focus();
	}	
//-->


