// Creates a new pop up window given a url, height and width of a web page, 
function setFocus (url,height,width) {

	newWindow = window.open(url,"newWin","location=no,menubar=no,resizable=yes,scrollbars=no,toolbar=no,status=no,height=" + height + ",width=" + width + ",left=0,top=0");
	newWindow.resizeTo(parseInt(width) + 12,parseInt(height) + 30);
	newWindow.focus();

}