function popitup(url,height,width) {
	newwindow=window.open(url,"windowPop","height="+height+",width="+width+",screenx=100,screeny=200");
	if (window.focus) {newwindow.focus()}
	return false;
}

