/* --------------------------------------------------
   Window opening script
   Copyright (C) Colin Mc Mahon, Protomatter Web
   Solutions 2006
   -------------------------------------------------- */
OpenGallery = function(in_id) {
	utilities.OpenWindow('/gallery/default.asp?galleryid=' + in_id, "Gallery", 800, 600, 0, 0);
	return false;
}

var Checkform = {
	init : function(in_text) {
		$("input[@type='submit']").click(function(){
			ok = true;
			$(this).parents("form").find(".required").each(function(){
				if(this.value=='' || this.value == in_text || this.value == '-1') { 
					ok = false;
					$(this).addClass('field_error');
				} else {
					$(this).removeClass('field_error');
				};                    
			});
			if(ok==false) {
				alert('Please complete all required fields!');
				return false;                    
			};
		});
	}
}

/* --------------------------------------------------
   General page initialisation
   -------------------------------------------------- */
$(function(){
   	if(typeof sIFR == "function"){
		sIFR.replaceElement("h1.replace", named({sFlashSrc: "/sIFR/gillsanslight.swf", sColor: "#FF0000", sBgColor: "#FFF8DD"}));
		sIFR.replaceElement("h2.replace", named({sFlashSrc: "/sIFR/gillsans.swf", sColor: "#000000", sBgColor: "#FFF8DD"}));
		sIFR.replaceElement("h2.replace_sec", named({sFlashSrc: "/sIFR/gillsanslight.swf", sColor: "#FF0000", sBgColor: "#DEDEDE"}));
	};
	Checkform.init('Search products...');
});