//COMMON JS 
function enlargeProject(target, w, h) {
	var width = w || 650;
	var height = h || 605;
	var profile = window.open(target, "profile", "width="+width+",height="+height+",menubar=no,toolbar=no,status=no,links=no,directories=no,personalbar=no,scrollbars=no,resizable=yes");
	profile.focus();
	return false;
}