function PopupPic(sPicURL,sPicWidth) { 
 if(sPicWidth)
	window.open("/sc/app/webroot/html/popupex.html?"+sPicURL+"?"+sPicWidth, "", "resizable=0,left=25,top=25,HEIGHT=200,WIDTH=200");
 else				
	window.open("/sc/app/webroot/html/popupex.html?"+sPicURL+"?200", "", "resizable=0,left=25,top=25,HEIGHT=200,WIDTH=200");
}


function expandCollapse() {
	for (var i=0; i<expandCollapse.arguments.length; i++) {
		var element = document.getElementById(expandCollapse.arguments[i]);
		element.style.display = (element.style.display == "none") ? "block" : "none";
	}
}

