/*
JavaScript Captcha Script
-  2009 Shaun Gill  -
http://www.landingnet.co.uk
http://www.shaungill.co.uk   
*/
// Set Variables	
var captchaUrl	=	'http://ystore.exclusiveconcepts.com/js/jscaptcha/';  // this needs to be the 'root' of the site
var first	=	(Math.floor(Math.random()*10))+'';
var second	=	(Math.floor(Math.random()*10))+'';
var third	=	(Math.floor(Math.random()*10))+'';
var fourth	=	(Math.floor(Math.random()*10))+'';
var fith	=	(Math.floor(Math.random()*10))+'';
var captcha	=	(first + second + third + fourth + fith);
function jscaptcha()
{
// Display the Captcha Images
	document.write("<img src=\"" + captchaUrl + first	+ ".gif\" alt=\"\" height=\"40\" align=\"absbottom\">");
	document.write("<img src=\"" + captchaUrl + second + ".gif\" alt=\"\"  height=\"40\" align=\"absbottom\">");
	document.write("<img src=\"" + captchaUrl + third + ".gif\" alt=\"\" height=\"40\" align=\"absbottom\">");
	document.write("<img src=\"" + captchaUrl + fourth + ".gif\" alt=\"\" height=\"40\" align=\"absbottom\">");
	document.write("<img src=\"" + captchaUrl + fith + ".gif\" alt=\"\" height=\"40\" align=\"absbottom\">");
// Display the Input Box
}
