function openPopup(url, width, height) {
	if (""+width	 == null || ""+width == "undefined"  || ""+width == "null") 	{ width = 750; 	}
	if (""+height  == null || ""+height == "undefined" || ""+height == "null")  { height = 550; }

	var refPopup = window.open(url,"csmopopup","width=" + width + ",height=" + height + ",scrollbars=yes");
}

function openPopupPublications(url) {
	openPopup(url, 600, 400);
}

