function f11(url, name) {
	var myHeight = screen.height;
	var myWidth = screen.width;
	var bits = "height="+myHeight+", width="+myWidth+", toolbar=no, scrollbars=yes, resizable=yes, status=no, copyhistory=no, location=no, menubar=no";
	newWin=window.open(url, name, bits);
	newWin.moveTo(0,0);
	newWin.focus();
}

function f11_small(url, name) {
	var myHeight = 440;
	var myWidth = 620;
	var bits = "height="+myHeight+", width="+myWidth+", toolbar=no, scrollbars=yes, resizable=yes, status=no, copyhistory=no, location=no, menubar=no";
	newWin=window.open(url, name, bits);
	newWin.moveTo(0,0);
	newWin.focus();
}
