/* This script opens the Current Specials window. Adjust heigth and width as needed 
   hauteur=height largeur=width   */
function open_window(votre_page)
{
	var hauteur_popup=585;
	var H = (screen.height - hauteur_popup) / 2;
	var largeur_popup=420;
	var L = (screen.width - largeur_popup) / 2;
	pop_up = window.open(votre_page,"Specials","status=no,scrollbars=yes,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
}
/* This script pre-loads the 
   Current Specials roll-over graphic    */
var image1 = new Image(); image1.src = "images/current-specials-on.gif";

