//open pop up window
function popUp(url) {
	newwindow=window.open(url,'name','height=350,width=360,resizable=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}
