function popUp(url,width,height,options){
	if (options != null && options != ""){
		options = ","+options;
	}
	window.open(url,'popUpWin','width='+width+',height='+height+options);
}
