function opendiv(){
	var checkwin = document.getElementById("Other");
	if (checkwin.style.display != "none"){
		checkwin.style.display = "none";
	} else {
		checkwin.style.display = "";
	}
}

function opendiv2(n){
	var checkwin = document.getElementById(n);
	if (checkwin.style.display != "none"){
		checkwin.style.display = "none";
	} else {
		checkwin.style.display = "";
	}
}

function closediv(n){
	var checkwin = document.getElementById(n);
	checkwin.style.display = "none";
}

function newPopup(url,h,w) {
	var query = 'height='+h+',width='+w+',left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=no';
	popupWindow = window.open(url,'popUpWindow',query);
}
