function chftd1(){
		var ni = document.getElementById('displayhere1');
		var divEvt = "hidepop1();";
		ni.setAttribute('onclick',divEvt);

		document.getElementById('displayhere1').style.display="block";
		document.getElementById('chftd1').style.display="block";
}

function hidepop1(){
		document.getElementById('chftd1').style.display="none";
		document.getElementById('displayhere1').style.display="none";
}

function chftd2(width,height,URL,scroll) {
		var path = URL;
		var popup = null;
		var w = width;
		var h = height;
		var s = scroll;
		if(scroll == null)
			s = 'no';
		popup = window.open( path , w + h , 'width=' + w + ',height=' + h +',scrollbars=' + s + ',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no' );
		popup.moveTo((screen.availWidth-w)/2,(screen.availHeight-h)/2) 

}

function closeme(n) { 
	if (n==1) {
        document.getElementById('wrap').style.display = "none";}
}