// JavaScript Document

//simple functions to show and hide div tags with ids
function showDiv(id) {
   document.getElementById(id).style.display = 'block';
}

function hideDiv(id) {
   document.getElementById(id).style.display = 'none';
}

function poptastic(url) {
  	newwindow=window.open(url,'Directions','height=450,width=600,resizable=yes,scrollbars=yes');
	  
			if (window.focus) {
				  newwindow.focus()
			}
}

function popCoupon(url) {
  	newwindow=window.open(url,'Directions','height=450,width=600,resizable=yes,scrollbars=yes');
	  
			if (window.focus) {
				  newwindow.focus()
			}
}  