function popitup(url) {
	var winl = (screen.width-955)/2;
  	var wint = (screen.height-740)/2;
	newwindow=window.open(url,'name','height=740,width=955,left='+winl+',top='+wint+',resizable=no, scrollbars=no, status=no');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popsiteup(url, valwidth, valheight, viewscroll) {
	var winl = (screen.width-valwidth)/2;
  	var wint = (screen.height-valheight)/2;
	newwindow=window.open(url,'name','height='+valheight+',width='+valwidth+',left='+winl+',top='+wint+',resizable=no, scrollbars='+viewscroll+', status=no');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popmovieup(url) {
	var winl = (screen.width-425)/2;
  	var wint = (screen.height-350)/2;
	newwindow=window.open(url,'name','height=350,width=425,left='+winl+',top='+wint+',resizable=no, scrollbars=no, status=no');
	if (window.focus) {newwindow.focus()}
	return false;
}
