function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page"
			+ id
			+ " = window.open(URL, '"
			+ id
			+ "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=350,left = 480,top = 392');");
}
function showBox(id) {
	var box = document.getElementById(id);
	if (box.style.display == "none")
		box.style.display = "";
	else
		box.style.display = "none";
}

function getSessionId() {
	var nameEQ = "POSTNUKESID=";
	var ca = document.cookie.split(';');
	for ( var i = 0; i < ca.length; i++) {
		var c = ca[i];
		while (c.charAt(0) == ' ')
			c = c.substring(1, c.length);
		if (c.indexOf(nameEQ) == 0)
			return c.substring(nameEQ.length, c.length);
	}
	return null;
}
