//Standard OpenWindow Functions
function openLink(screen,title,width,height){
	if ((width == null) || (width == '')){window_width = 700}
		else {window_width = width}
	if ((height == null) || (height == '')){window_height = 480}
		else {window_height = height}
	window.open(screen,title,'alwaysRaised=yes,width=' + window_width + ',height=' + window_height + ',location=no,menubar=no,resizable=yes,titlebar=yes,toolbar=no,scrollbars=yes,left=20,top=20')
}

function openLinkMB(screen,title,width,height){
	if ((width == null) || (width == '')){window_width = 700}
		else {window_width = width}
	if ((height == null) || (height == '')){window_height = 480}
		else {window_height = height}
	window.open(screen,title,'alwaysRaised=yes,width=' + window_width + ',height=' + window_height + ',location=no,menubar=yes,resizable=yes,titlebar=yes,toolbar=no,scrollbars=yes,left=20,top=20')
}

function openLinkMax(url,title,width,height){
	if ((width == null) || (width == '')){window_width = screen.availWidth - 70}
		else {window_width = width}
	if ((height == null) || (height == '')){window_height = screen.availHeight - 200}
		else {window_height = height}
	window.open(url, title, 'alwaysRaised=yes,width=' + window_width + ',height=' + window_height + ',location=no,menubar=yes,resizable=yes,titlebar=yes,toolbar=no,scrollbars=yes,left=20,top=30')
}

function openPreQual(){
	window.open('https://www.snapmortgage.com/application/SnapApp', 'SnapApp', 'alwaysRaised=yes,width=700,height=550,status=yes,location=no,menubar=yes,resizable=yes,titlebar=yes,toolbar=no,scrollbars=yes,left=20,top=30')
}

function openRefiPreQual(){
	window.open('https://www.snapmortgage.com/application/RefiApp/', 'RefiApp', 'alwaysRaised=yes,width=700,height=550,status=yes,location=no,menubar=yes,resizable=yes,titlebar=yes,toolbar=no,scrollbars=yes,left=20,top=30')
}

function printApp(appID){
	window.open('https://www.snapmortgage.com/application/print_app.asp?appID=' + appID, 'PrintApp', 'alwaysRaised=yes,width=700,height=550,status=yes,location=no,menubar=yes,resizable=yes,titlebar=yes,toolbar=no,scrollbars=yes,left=20,top=30')
}