<!--

//printPage
function printPage() 
{
window.print()
}

//closeWindow
function closeWindow() 
{
window.close()
}

// popupWindow with width & height
function openWindowXWH (url,w,h)
{
dimension="width="+w+",height="+h;
window.open(url, "my_new_window", dimension);
}

//gdSpringWarning
function openWarning() 
{
window.open("http://aaaremotes.com/garagedoorspringwarning1.html","my_new_window","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=500, height=450")
}

//openWindow
function openWindow() 
{
window.open("http://www.aaaremotes.com/garagedoorinstallation.html","my_new_window","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=800, height=600")
}

//showHideRightNav
function showHide(divId)
{
	if(document.getElementById(divId).style.display == 'block'){
		document.getElementById(divId).style.display ='none';
		}
	else{
		document.getElementById(divId).style.display ='block';
	}
}



// MAP Pricing (Too Low To Show)
function openWindowMap(ww, wh) {
//ww=ww+25; wh=wh+50;
w1=window.open('','w1','width='+ww+',height='+wh+',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
w1.document.open();
w1.document.write("<font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><b>Price \"Too Low to Show\" Explained<\/b><br> Throughout our website you will find \"MAP\" or minimum-advertised-pricing. This allows us to receive the best possible support from our manufacturers and distributors and we abide by their policies. You will be able to see the price by selecting the Order button on the given item page. <br><br>Adding items to the shopping cart does not mean you have to buy the items. You will be able to remove an item from the cart if you so choose.<p align=\"center\"><a href=\"javascript:window.close();\">Close Window</a></p></font>");
w1.document.focus();
}

// MAP Call for Pricing (show MSRP)
function openWindowMapCall(ww, wh) {
//ww=ww+25; wh=wh+50;
w1=window.open('','w1','width='+ww+',height='+wh+',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
w1.document.open();
w1.document.write("<font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><b>Price \"Too Low to Show\" Explained<\/b><br> Throughout our website you will find \"MAP\" or minimum-advertised-pricing. This allows us to receive the best possible support from our manufacturers and distributors and we abide by their policies. Give us a call if you would like a price quote.<p align=\"center\"><a href=\"javascript:window.close();\">Close Window</a></p></font>");
w1.document.focus();
}

// MAP Pricing (No Pricing)
function openWindowMapNoPrice(ww, wh) {
//ww=ww+25; wh=wh+50;
w1=window.open('','w1','width='+ww+',height='+wh+',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
w1.document.open();
w1.document.write("<font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><b>\"MAP Pricing\" Explained<\/b><br> Throughout our website you will find \"MAP\" or minimum-advertised-pricing. This allows us to receive the best possible support from our manufacturers and distributors and we abide by their policies. You will be able to see the price by selecting the Add To Cart button on the given item page. <br><br>Adding items to the shopping cart does not mean you have to buy the items. You will be able to remove an item from the cart if you so choose.<p align=\"center\"><a href=\"javascript:window.close();\">Close Window</a></p></font>");
w1.document.focus();
}