/************************************
popup 
*************************************/

function popUp(strPic, strName, strPref) {
	var popupwin;
	strPref = strPref + ',toolbar=no,scrollbars=no,location=no';
	popupwin = window.open(strPic,strName,strPref);
	popupwin.focus();
}	
