// WHEN ALL THE IMAGES ARE DONE LOADING, THE "imagesdone" VARIABLE IS SET TO "TRUE"

var imagenames=new Array( '../pol/pol_01.jpg' , '../pol/pol_02.jpg' , '../pol/pol_03.jpg' , '../pol/pol_04.jpg' ,  '../pol/pol_05.jpg' , '../pol/pol_06.jpgf''../pol/pol_07.jpg' ,'../pol/pol_08.jpg' ,'../pol/pol_09.jpg' ,'../pol/pol_010.jpg' ,'../pol/pol_011.jpg' ,'../pol/pol_012.jpg' ,'../pol/pol_013.jpg' , '../pol/pol_014.jpg' ,'../pol/pol_015.jpg' ,'../pol/pol_016.jpg' ,'../pol/pol_017.jpg' ,'../pe/pe_01.jpg' ,'../pe/pe_02.jpg' , '../pe/pe_03.jpg' , '../pe/pe_04.jpg' , '../pe/pe_05.jpg' , '../pe/pe_06.jpg' , '../pe/pe_07.jpg' , '../pe/pe_08.jpg' '../pe/pe_09.jpg' '../pe/pe_010.jpg' '../pe/pe_011.jpg' '../pe/pe_012.jpg' '../pe/pe_013.jpg' '../pe/pe_014.jpg' '../pe/pe_015.jpg' , '../pro/pro_01.jpg' , '../pro/pro_02.jpg' ,  '../pro/pro_03.jpg' , '../pro/pro_04.jpg' , '../pro/pro_05.jpg' , '../pro/pro_06.jpg' , '../pro/pro_07.jpg' , '../pro/pro_08.jpg' , '../pro/pro_09.jpg' , '../pro/pro_010.jpg' , '../pro/pro_011.jpg' , '../pro/pro_012.jpg' , '../pro/pro_013.jpg' , '../pro/pro_014.jpg' , '../pro/pro_015.jpg' , '../pro/pro_016.jpg' , '../pro/pro_017.jpg' , '../pro/pro_018.jpg' , '../pro/pro_019.jpg' , '../pro/pro_020.jpg' , '../pro/pro_021.jpg' , '../pro/pro_022.jpg' , '../pro/pro_023.jpg' , '../pro/pro_024.jpg' , '../pro/pro_025.jpg' , '../pl/pl_01.jpg' , '../pl/pl_02.jpg' , '../pl/pl_03.jpg' , '../pl/pl_04.jpg' , '../pl/pl_05.jpg' , '../pl/pl_06.jpg' , '../pl/pl_07.jpg' , '../pl/pl_08.jpg' , '../pl/pl_09.jpg' , '../pl/pl_010.jpg' , '../pl/pl_011.jpg' , '../pl/pl_012.jpg' , '../pl/pl_013.jpg' , '../pl/pl_014.jpg' , '../pl/pl_015.jpg' , '../pl/pl_016.jpg' , '../pl/pl_017.jpg' ,);

var yposition=700;                                  //POSITION OF LOAD BAR FROM TOP OF WINDOW, IN PIXELS
var loadedcolor='gray' ;                // PROGRESS BAR COLOR
var unloadedcolor='white';                   // BGCOLOR OF UNLOADED AREA
var barheight=15;                                 // HEIGHT OF PROGRESS BAR IN PIXELS (MIN 25)
var barwidth=350;                                // WIDTH OF THE BAR IN PIXELS  
var bordercolor='black';                       // COLOR OF THE BORDER

//DO NOT EDIT BEYOND THIS POINT 
var NS4 = (navigator.appName.indexOf("Netscape")>=0 && parseFloat(navigator.appVersion) >= 4 && parseFloat(navigator.appVersion) < 5)? true : false;
var IE4 = (document.all)? true : false;
var NS6 = (parseFloat(navigator.appVersion) >= 5 && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var imagesdone=false;
var blocksize=barwidth/(imagenames.length);
barheight=Math.max(barheight,25);
var loaded=0, perouter, perdone, images=new Array();
var txt=(NS4)?'<layer name="perouter" bgcolor="'+bordercolor+'" visibility="hide">' : '<div id="perouter" style="position:absolute; visibility:hidden; background-color:'+bordercolor+'">';
txt+='<table cellpadding="0" cellspacing="1" border="0"><tr><td width="'+barwidth+'" height="'+barheight+'" valign="center">';
if(NS4)txt+='<ilayer width="100%" height="100%"><layer width="100%" height="100%" bgcolor="'+unloadedcolor+'" top="0" left="0">';
txt+='<table cellpadding="0" cellspacing="0" border="0"><tr><td valign="center" width="'+barwidth+'" height="'+barheight+'" bgcolor="'+unloadedcolor+'"><center><font color="'+loadedcolor+'" size="1" face="sans-serif">Loading Images...</font></center></td></tr></table>';
if(NS4) txt+='</layer>';
txt+=(NS4)? '<layer name="perdone" width="100%" height="'+barheight+'" bgcolor="'+loadedcolor+'" top="0" left="0">' : '<div id="perdone" style="position:absolute; top:1px; left:1px; width:'+barwidth+'px; height:'+barheight+'px; background-color:'+loadedcolor+'; z-index:100">';
txt+='<table cellpadding="0" cellspacing="0" border="0"><tr><td valign="center" width="'+barwidth+'" height="'+barheight+'" bgcolor="'+loadedcolor+'"><center><font color="'+unloadedcolor+'" size="1" face="sans-serif">Loading Images...</font></center></td></tr></table>';
txt+=(NS4)? '</layer></ilayer>' : '</div>';
txt+='</td></tr></table>';
txt+=(NS4)?'</layer>' : '</div>';
document.write(txt);
function loadimages(){
if(NS4){
perouter=document.perouter;
perdone=document.perouter.document.layers[0].document.perdone;
}
if(NS6){
perouter=document.getElementById('perouter');
perdone=document.getElementById('perdone');
}
if(IE4){
perouter=document.all.perouter;
perdone=document.all.perdone;
}
cliplayer(perdone,0,0,barheight,0);
window.onresize=setouterpos;
setouterpos();
for(n=0;n<imagenames.length;n++){
images[n]=new Image();
images[n].src=imagenames[n];
setTimeout('checkload('+n+')' ,n*100);
}}
function setouterpos(){
var ww=(IE4)? document.body.clientWidth : window.innerWidth;
var x=(ww-barwidth)/2;
if(NS4){
perouter.moveTo(x,yposition);
perouter.visibility="show";
}
if(IE4||NS6){
perouter.style.left=x+'px';
perouter.style.top=yposition+'px';
perouter.style.visibility="visible";
}}
function dispbars(){
loaded++;
cliplayer(perdone, 0, blocksize*loaded, barheight, 0);
if(loaded>=imagenames.length)setTimeout('hideperouter()', 800);
}
function checkload(index){
(images[index].complete)? dispbars() : setTimeout('checkload('+index+')', 100);
}
function hideperouter(){
(NS4)? perouter.visibility="hide" : perouter.style.visibility="hidden";
imagesdone=true;
}
function cliplayer(layer, ct, cr, cb, cl){
if(NS4){
layer.clip.left=cl;
layer.clip.top=ct;
layer.clip.right=cr;
layer.clip.bottom=cb;
}
if(IE4||NS6)layer.style.clip='rect('+ct+' '+cr+' '+cb+' '+cl+')';
}
window.onload=loadimages;