// JavaScript Document
function openWindow(url, width, height) {
 openNamedWindow(url, width, height, "Ranch Marketing Associates");
}

function openNamedWindow(url, width, height,name) {
        height += 50;          
	var sFeatures = "top=50,left=50,height=" + height + ",width=" + width + ",status=yes,scrollbars=yes,resizable=1,menubar=";
	var win = window.open(url,name,sFeatures);
        if (win != null) {
 	 win.focus();
 	 win.resizeTo(width, height);
        }
}