var couponwidthdefault='358';
var couponheightdefault='480';
var couponiddefault='1436';
var couponid='1436';

function validateForm(theForm)
	{
		// Customize these calls for your form
		// Start ------->
		if (!validFirstName(theForm.FirstName))
			return false;
		if (!validLastName(theForm.LastName))
			return false;
		if (!validRequired(theForm.Email,"email"))
			return false;
		if (!validEmail(theForm.Email,"Email",true))
			return false;
		// <--------- End
		validateCustomForm(theForm);
		return true;
}

var cgi = new Object();
      cgi.http_host = location.host;
      cgi.http_user_agent = navigator.userAgent;
      cgi.http_cookie = document.cookie;
      cgi.https = (location.protocol == 'https:\/\/') ? 'on' : 'off';
      cgi.path_info = (location.pathname.indexOf('?') != -1) ?
location.pathname.substring(0, location.pathname.indexOf('?')) :
location.pathname;
      cgi.query_string = (location.search) ?
((location.search.indexOf('#') != -1) ? location.search.substring(1,
location.search.indexOf('#')) : location.search.substring(1)) : '';
      cgi.script_name = cgi.path_info;
      cgi.http_referer = document.referrer;
        var LinkLocation =
"http://www.etnasystems.com/coupon/?COUPONID=" + couponid + "&OriginalReferer=" +
getCookie("JSREF") + "&OriginalPage=" + cgi['script_name'] + "&OriginalSite=" + cgi['http_host'];
   
//alert("link=" + LinkLocation);
// alert('test2=' + LinkLocation);




// FANCY STUFF 


$(document).ready(function() {
	$("a.fancyconsultation").fancybox({
        'autoScale'     	: false,
		'overlayOpacity'	: 0.5,
		'overlayColor'		: '#322005',
        'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'					: 'iframe',
		'titleShow'			: false,
		'width'				: 440,
		'height'				: 580,
		'opacity'				: true
	});
});


$('a.fancyclose').click(function(){ 
    parent.top.$('#fancy_close').trigger('click'); 
});
