﻿var newwindow;
function openme(url, winname, width, height)
{
/*'resizable=1 ,scrollbars=yes,width=745, height=735,left=0, top=0,status=no'*/
if (winname=="budget"){ width = 750; height=700;}
if (winname=="mortgage"){ width = 590; height=720;}
if (winname=="loan"){ width = 600; height=680;}
var temp = "resizable=1 ,scrollbars=yes,width=" + width + ", height=" + height + ",left=150, top=75,status=no";
	newwindow=window.open(url,winname, temp);
	if (window.focus) {newwindow.focus()}
}
