//pop-up window
function popUp(url, thewidth, theheight){
	var popUp = window.open(url,"win",'toolbar=0,location=1,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=' + thewidth + ',height=' + theheight);
	popUp.focus();
}  
