function NewWindow(state, country){
	var win = null;
	var width = 650	
	var height = 400;
	var top = (window.screen.availHeight - height) / 2;
	var left = (window.screen.availWidth - width) / 2;
	
	settings = "width=650,height=400,top=" + top + ",left=" + left + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
	win = window.open('/find_contractor_result.asp?state=' + state + '&country=' + country,"popupWin",settings);
	win.focus();
}

