// Jane Krayesky for All County Exteriors, May 2008
	
// ---------------------------------------
// this function is for pop-up windows

//added function for GE Money - for Portfolio, Project-type and Project pages

// added popupPage for popup Specials
function callSubmit()
{
   document.frmApplicationTermsCond.submit();
}

//Popup functions 
function popup(url) {
	newwindow=window.open(url,'big','width=670,height=520,status=no,location=no,menubar=no,resizable=yes,scrollbars=no,toolbar=no,left=50,top=50,screenx=50,screeny=50');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popupWide(url) {
	newwindow=window.open(url,'big','width=750,height=520,status=no,location=no,menubar=no,resizable=yes,scrollbars=no,toolbar=no,left=30,top=50,screenx=30,screeny=50');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popupVert(url) {
	newwindow=window.open(url,'bigVert','width=520,height=680,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no,left=80,top=50,screenx=80,screeny=50');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popupPage(url) {
	newwindow=window.open(url,'bigVert','width=620,height=650,status=no,location=no,menubar=no,resizable=yes,scrollbars=no,toolbar=no,left=400,top=50,screenx=400,screeny=50');
	if (window.focus) {newwindow.focus()}
	return false;
}
	
	
	





