// JavaScript Document

function popup(mylink, windowname, width, height) {
	namedWindow=window.open(mylink, windowname, 'resizable=1,width='+width+', height='+height+',scrollbars=no');
	namedWindow.resizeTo(width,height+60);
	namedWindow.focus();
	return false;
}
function my10x42()
{
    window.open("/binoculars/law/10x42R_SUMR.html", "mywindow", "location=1,status=1,scrollbars=1,width=600,height=600");
    
}
