var dealText = new Array();

var currency_symbol = new Array("","&euro;","&pound;","&#8356;","&#36;","&yen;","&#8359;");

function showProgress(){
  // SHOW PROGRESS BAR
	window.scrollTo(0,0);
  document.body.style.overflow='hidden';
  document.body.style.marginRight='16px';

  var c1=new Image();c1.src="/images/vft_header.gif";
  var c2=new Image();c2.src="/images/progress.gif";

  var html=document.body;

  var branding=document.createElement('div');
  branding.setAttribute('id', 'branding');
  html.appendChild(branding);
  var content="<table height=\"100%\" width=\"100%\"><tr><td align=\"center\">";
  content+="<div style=\"z-index:0;\"><iframe frameborder=\"0\" height=\"110\" width=\"747\"></iframe></div>";
  content+="<table cellpadding=10 bgcolor=#ffffff id=dialog><tr><td>";
  content+="<img name='img1' src='/images/vft_header.gif' width='747' height='60'/><br/>";
  content+="<div id=pbar></div>";
  content+="</td></tr></table></td></tr></table>";
  branding.innerHTML=content;
  //width, height, bgcolor, borderwidth, bordercolor, blockcolor, speed, #blocks, #iterations, function/code
  var bar1=createBar(747,15,'white',1,'white','#0D59A4',85,10,0,"");
  
  var progress=document.createElement('div');
  progress.setAttribute('id', 'progress');
  html.appendChild(progress);

  document.getElementById("branding").style.display="block";
  document.getElementById("branding").style.display="none";
  document.getElementById("branding").style.display="block";
  
  a=0
  for(i=0;i<100000;i++){
    a++
  }
}

var w3c=(document.getElementById)?true:false;
var ie=(document.all)?true:false;
var N=-1;

function createBar(w,h,bgc,brdW,brdC,blkC,speed,blocks,count,action){
  if(ie||w3c){
    var t='<div id="_xpbar'+(++N)+'" style="visibility:visible; position:relative; overflow:hidden; width:'+w+'px; height:'+h+'px; background-color:'+bgc+'; border-color:'+brdC+'; border-width:'+brdW+'px; border-style:solid; font-size:1px;">';
    t+='<span id="blocks'+N+'" style="left:-'+(h*2+1)+'px; position:absolute; font-size:1px">';
    for(i=0;i<blocks;i++){
      t+='<span style="background-color:'+blkC+'; left:-'+((h*i)+i)+'px; font-size:1px; position:absolute; width:'+h+'px; height:'+h+'px; '
      t+=(ie)?'filter:alpha(opacity='+(100-i*(100/blocks))+')':'-Moz-opacity:'+((100-i*(100/blocks))/100);
      t+='"></span>';
    }
    t+='</span></div>';
    //document.write(t);
    document.getElementById('pbar').innerHTML=t;

    var bA=(ie)?document.all['blocks'+N]:document.getElementById('blocks'+N);
    bA.bar=(ie)?document.all['_xpbar'+N]:document.getElementById('_xpbar'+N);
    bA.blocks=blocks;
    bA.N=N;
    bA.w=w;
    bA.h=h;
    bA.speed=speed;
    bA.ctr=0;
    bA.count=count;
    bA.action=action;
    bA.togglePause=togglePause;
    bA.showBar=function(){
      this.bar.style.visibility="visible";
    }
    bA.hideBar=function(){
      this.bar.style.visibility="hidden";
    }
    bA.tid=setInterval('startBar('+N+')',speed);
    
    return bA;
    //return t;
  }
}

function startBar(bn){
var t=(ie)?document.all['blocks'+bn]:document.getElementById('blocks'+bn);
if(parseInt(t.style.left)+t.h+1-(t.blocks*t.h+t.blocks)>t.w){
t.style.left=-(t.h*2+1)+'px';
t.ctr++;
if(t.ctr>=t.count){
eval(t.action);
t.ctr=0;
}}else t.style.left=(parseInt(t.style.left)+t.h+1)+'px';
}

function togglePause(){
if(this.tid==0){
this.tid=setInterval('startBar('+this.N+')',this.speed);
}else{
clearInterval(this.tid);
this.tid=0;
}}

function togglePause(){
if(this.tid==0){
this.tid=setInterval('startBar('+this.N+')',this.speed);
}else{
clearInterval(this.tid);
this.tid=0;
}}

function getParam( name ){  
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");  
var regexS = "[\\?&]"+name+"=([^&#]*)";  
var regex = new RegExp( regexS );  
var results = regex.exec( window.location.href );  
if( results == null )    return "";  
else    
return results[1];
}

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}

//Sort Out Affiliate Windows
if (getParam('source')=='aw'){
if (readCookie('VFTAff')==null) createCookie('VFTAff','aw',30);
if (readCookie('VFTAffID')==null || readCookie('VFTAffID')!=getParam('awaid')) createCookie('VFTAffID',getParam('awaid'),30);
if (readCookie('VFTAWC')==null || readCookie('VFTAWC')!=getParam('awc')) createCookie('VFTAWC',getParam('awc'),30);
}