function popUpImg(url) {
	newwindow=window.open(url,'name','height=800,width=600,resizable=1,scrollbars=1,toolbar=0,');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popUpWindow(url) {
	newwindow=window.open(url,'name','height=700,width=800,resizable=1,scrollbars=1,toolbar=0,');
	if (window.focus) {newwindow.focus()}
	return false;
}