// JavaScript Document
//Popups
function popitup(url, w, h) {
	newwindow=window.open(url,'name','height='+h+',width='+w+',toolbar=0,menubar=0,location=0,scrollbars=0');
	if (window.focus) {newwindow.focus()}
	return false;
}