// Main Javascripts

function contactForm(fileName) {
	window.open(fileName, "ContactForm", "height=625,width=500,resizable=yes,scrollbars=yes;left=10,top=10,screenX=10,screenY=10");
	}
	
function recipeOpen(fileName) {
	window.open(fileName, "PrintRecipe", "height=500,width=600,resizable=yes,scrollbars=yes,left=10,top=10,screenX=10,screenY=10,menubar=yes,toolbar=yes");
	}
	
// +++ pop-up flash ad window 300 x 250

function openFlashAd(newWindow) {
 	newFlashWindow = window.open(newWindow, 'newAd', 'width=301,height=251,left=300,top=100');
	newFlashWindow.focus();
 	}

//  ==== pop-up coupon 640 x 350 (coupon)

function openPopup1(newCoupon) {
      newCouponWindow = window.open(newCoupon, 'newCoup', 'width=640 height=350,left=0,top=0,scrollbars=yes,resizable')
 	
     newCouponWindow.focus()
     }