





// MAIN NAVIGATION ROLLOVER SCRIPT





// BROWSER SNIFFER FOR DHTML SCRIPTS 

DOM = (document.getElementById) ? true : false;

NS4 = (document.layers) ? true : false;

IE = (document.all) ? true : false;

IE4 = IE && !DOM;

Mac = (navigator.appVersion.indexOf("Mac") != -1);

IE4M = IE4 && Mac;

IsMenu = (DOM || NS4 || (IE4 && !IE4M));

BrowserString = NS4 ? "NS4" : DOM ? "DOM" : "IE4";

if(window.event + "" == "undefined") event = null;

function f_PopUp(){return false};

function f_PopDown(){return false};

popUp = f_PopUp;

popDown = f_PopDown;





if(IsMenu) {

	document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='../js/Arrays.js' TYPE='text/javascript'><\/SCR" + "IPT>");

	document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='../js/"+ BrowserString +".js' TYPE='text/javascript'><\/SCR" + "IPT>");

}





// UNIVERSAL POP UP WINDOW FOR PDFs

var newwin;

var browser=navigator.appName;

var version=navigator.appVersion; 

function openWindow(pageURL)

{

	newwin = window.open(pageURL,"DDE","width=638,height=381,resizable=yes,toolbar=no,menubar=yes,location=no,status=yes,scrollbars=yes")

	if (browser.indexOf("Microsoft") >= 0) {

		if (version.indexOf("5.") >= 0) {

				setTimeout('newwin.focus();',250);

		}

	}

}



function openWindowPDF(pageURL)

{

	if (browser.indexOf("Explorer") >= 0){

		newwin = window.open(pageURL,"DDE","width=638,height=381,resizable=yes,toolbar=no,menubar=yes,location=no,status=yes,scrollbars=yes")

		setTimeout('newwin.focus();',250);

	}else{

	window.location=pageURL;

	}

}

	

function openWindowCRG(url,name,width,height,features) 

{

	var winLeft = (screen.width - width) / 2;

	if (winLeft < 0) winLeft = 0;

	var winTop = (screen.height - height) / 2;

	if (winTop < 0 || winTop <= 55) winTop = 0;

	newwin = window.open(url,name,"width=" + width + ",height=" + height + ",top=" + winTop + ",left=" + winLeft + "," + features);

	setTimeout('newwin.focus()',250);

}



// NETSCAPE CSS RESIZE BUG FIX

function WM_netscapeCssFix() {

  if (document.WM.WM_netscapeCssFix.initWindowWidth != window.innerWidth || document.WM.WM_netscapeCssFix.initWindowHeight != window.innerHeight) {

    document.location = document.location;

  }

}



function WM_netscapeCssFixCheckIn() {

  if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {

    if (typeof document.WM == 'undefined'){

      document.WM = new Object;

    }

    if (typeof document.WM.WM_scaleFont == 'undefined') {

      document.WM.WM_netscapeCssFix = new Object;

      document.WM.WM_netscapeCssFix.initWindowWidth = window.innerWidth;

      document.WM.WM_netscapeCssFix.initWindowHeight = window.innerHeight;

    }

    window.onresize = WM_netscapeCssFix;

  }

}



WM_netscapeCssFixCheckIn()





// CONTACT US FORM VALIDATION 

function ValidateLogin() {

	if (ValidateUsername() == false) {

		return (false);

	}

	if (ValidatePassword() == false) {

		return (false);

	}

	//document.frmLogin.submit();

	return (true);

}



function ValidateUsername() {

   if (isBlank(document.frmLogin.username.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Username\" field.");

      document.frmLogin.username.focus();

      return(false);

   }

   return (true);

} // *** end ValidateUsername



function ValidatePassword() {

   if (isBlank(document.frmLogin.password.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Password\" field.");

      document.frmLogin.password.focus();

      returns;

   }

   return (true);

} // *** end ValidatePassword



//  ***  VALIDATION FOR CONTACT US

function ValidateForm() {

	if (document.frmContactUs.firstname.value == "") {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"First Name\" field.");

      	document.frmContactUs.firstname.focus();

      	return;

	}

	if (document.frmContactUs.lastname.value == "") {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Last Name\" field.");

      	document.frmContactUs.lastname.focus();

      	return;

	}

	if (document.frmContactUs.email.value == "") {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Email\" field.");

      	document.frmContactUs.email.focus();

      	return;

	}

	if (document.frmContactUs.company.value == "") {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Company\" field.");

      	document.frmContactUs.company.focus();

      	return;

	}

	if (document.frmContactUs.address1.value == "") {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Address\" field.");

      	document.frmContactUs.address1.focus();

      	return;

	}

	if (document.frmContactUs.city.value == "") {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"City\" field.");

      	document.frmContactUs.city.focus();

      	return;

	}

	if (document.frmContactUs.state.value == "") {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"State\" field.");

      	document.frmContactUs.state.focus();

      	return;

	}

	if (document.frmContactUs.phone.value == "") {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Phone\" field.");

      	document.frmContactUs.phone.focus();

      	return;

	}

	if (document.frmContactUs.func.options[0].selected == true) {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Function\" field.");

      	document.frmContactUs.func.focus();

      	return;

	}

	if (document.frmContactUs.business.options[0].selected == true) {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Type of Business\" field.");

      	document.frmContactUs.business.focus();

      	return;

	}

	if (document.frmContactUs.application.options[0].selected == true) {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Application\" field.");

      	document.frmContactUs.application.focus();

      	return;

	}

	if (document.frmContactUs.product.options[0].selected == true) {

		alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Products\" field.");

      	document.frmContactUs.product.focus();

      	return;

	}

	document.frmContactUs.submit();

}



function SetUser() {

   document.frmContactUs.old_user.value = "Y";

   return (true);

}  // *** end SetUser



function ValidateRegForm() {

   if (ValidateRegFname() == false) {

      return (false);

   }

   if (ValidateRegLname() == false) {

      return (false);

   }

   if (ValidateRegEmail() == false) {

      return (false);

   }

   if (ValidateRegCompany() == false) {

      return (false);

   }

   if (ValidateRegAddress1() == false) {

      return (false);

   }

   if (ValidateRegCity() == false) {

      return (false);

   }

   if (ValidateRegState() == false) {

      return (false);

   }

   if (ValidateRegZip() == false) {

      return (false);

   }

   if (ValidateRegCountry() == false) {

     return (false);

   } 

   if (ValidateRegPhone() == false) {

      return (false);

   }

   if (ValidateRegUserName() == false) {

      return (false);

   }

   if (ValidateRegPassword() == false) {

      return (false);

   }

   if (ValidateRegPassword2() == false) {

      return (false);

   }

   if (MatchRegPasswords() == false) {

      return (false);

   }

   //document.frmRegister.submit();

   return (true);

}   // *** end ValidateForm



function ValidateRegFname() {

   if (isBlank(document.frmRegister.firstname.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"First Name\" field.");

      document.frmRegister.firstname.focus();

      return(false);

   }

   return (true);

} // *** end ValidateFname



function ValidateRegUserName() {

   if (isBlank(document.frmRegister.username.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Username\" field.");

      document.frmRegister.username.focus();

      return(false);

   }

   return (true);

} // *** end ValidateUserName



function ValidateRegPassword() {

   if (isBlank(document.frmRegister.password.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Password\" field.");

      document.frmRegister.password.focus();

      return(false);

   }

   return (true);

} // *** end ValidatePassowrd



function ValidateRegPassword2() {

	if (isBlank(document.frmRegister.password2.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Re-Type Password\" field.");

      document.frmRegister.password2.focus();

	      return(false);

	}

		return (true);

} // *** end ValidatePassword2



function MatchRegPasswords() {



	if (document.frmRegister.password2.value != document.frmRegister.password.value) {

		alert("You must complete all of the required fields to register.The Passwords entered do not match.  Please re-enter values for the \"Password\" and \"Re-Type Password\" fields.");		

		document.frmRegister.password.value = "" ;

		document.frmRegister.password2.value = "" ;

		document.frmRegister.password.focus();

				

	    return(false);

}	else{

		return(true);

	}	  

}  // *** end MatchPasswords



function ValidateRegLname() {

   if (isBlank(document.frmRegister.lastname.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Last Name\" field.");

      document.frmRegister.lastname.focus();

      return(false);

   }

   return (true);

} // *** end ValidateLname



function ValidateRegCompany() {

   if (isBlank(document.frmRegister.company.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Company\" field.");

      document.frmRegister.company.focus();

      return(false);

   }

   return (true);

} // *** end ValidateCompany



function ValidateRegAddress1() {

   if (isBlank(document.frmRegister.address1.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Address\" field.");

      document.frmRegister.address1.focus();

      return(false);

   }

   return (true);

} // *** end ValidateAddress1



function ValidateRegCity() {

   if (isBlank(document.frmRegister.city.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"City\" field.");

      document.frmRegister.city.focus();

      return(false);

   }

   return (true);

} // *** end ValidateCity



function ValidateRegState() {

   if (isBlank(document.frmRegister.state.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"State\" field.");

      document.frmRegister.state.focus();

      return(false);

   }

   return (true);

} // *** end ValidateState



function ValidateRegZip() {

   if (isBlank(document.frmRegister.zip.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Zip Code\" field.");

      document.frmRegister.zip.focus();

      return(false);

   }

   return (true);

} // *** end ValidateZip



function ValidateRegPhone() {

   if (isBlank(document.frmRegister.phone.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Phone\" field.");

      document.frmRegister.phone.focus();

      return(false);

   }

   return (true);

} // *** end ValidatePhone



function ValidateRegEmail() {

   if (isBlank(document.frmRegister.email.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Email Address\" field.");

      document.frmRegister.email.focus();

      return(false);

   }

   return (true);

} // *** end ValidateEmail



function ValidateRegCountry() {

   if (isBlank(document.frmRegister.country.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Country\" field.");

      document.frmRegister.country.focus();

      return(false);

   }

   return (true);

} // *** end ValidateCountry



// **** CRG DOWNLOAD REGISTRATION VALIDATION



function ValidateCRGDownloadLogin() {

	if (ValidateCRGDownloadLoginUsername() == false) {

		return (false);

	}

	if (ValidateCRGDownloadLoginPassword() == false) {

		return (false);

	}

	return (true);

}



function ValidateCRGDownloadLoginUsername() {

   if (isBlank(document.frmCRGDownloadLogin.username.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Username\" field.");

      document.frmCRGDownloadLogin.username.focus();

      return(false);

   }

   return (true);

} // *** end ValidateUsername



function ValidateCRGDownloadLoginPassword() {

   if (isBlank(document.frmCRGDownloadLogin.password.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Password\" field.");

      document.frmCRGDownloadLogin.password.focus();

      return(false);

   }

   return (true);

} // *** end ValidatePassword



function ValidateCRGDownloadForm() {



	if (ValidateCRGDownloadEmail() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadFname() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadLname() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadCompany() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadAddress1() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadCity() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadState() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadZip() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadPhone() == false) {

	   return (false);

	}

	if (ValidateCRGDownloadCountry() == false) {

	  return (false);

	} 

	if (ValidateCRGDownloadRegisteredUser() == false) {

		if (ValidateCRGDownloadUserName() == false) {

		   return (false);

		}

		if (ValidateCRGDownloadPassword() == false) {

		   return (false);

		}

		if (ValidateCRGDownloadPassword2() == false) {

		   return (false);

		}

		if (MatchCRGPasswords() == false) {

		   return (false);

		}

	}

	//document.frmCRGRegister.submit();

	return (true);

}   // *** end ValidateForm



function isBlank(sInput) {

   var iIdx;

   var iLth = 0;

   if (sInput == "") {

      return true;

   }

   for (iIdx = 0; iIdx < sInput.length; iIdx++) {

      var sChar = sInput.charAt(iIdx);

      if (sChar == " ") {

         iLth = iLth + 1;

      }

   }

   if (iLth == sInput.length) {

      return(true);

   }

   return false;

}   // *** end isBlank



function ValidateCRGDownloadFname() {

   if (isBlank(document.frmCRGRegister.firstname.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"First Name\" field.");

      document.frmCRGRegister.firstname.focus();

      return(false);

   }

   return (true);

} // *** end ValidateFname



function ValidateCRGDownloadUserName() {

   if (isBlank(document.frmCRGRegister.crgusername.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"User Name\" field.");

      document.frmCRGRegister.crgusername.focus();

      return(false);

   }

   return (true);

} // *** end ValidateUserName



function ValidateCRGDownloadRegisteredUser() {

   if (isBlank(document.frmCRGRegister.registered.value) == true) {

      return(false);

   }

   return (true);

} // *** end ValidateUserName



function ValidateCRGDownloadPassword() {

   if (isBlank(document.frmCRGRegister.crgpassword.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Password\" field.");

      document.frmCRGRegister.crgpassword.focus();

      return(false);

   }

   return (true);

} // *** end ValidatePassowrd



function ValidateCRGDownloadPassword2() {

	if (isBlank(document.frmCRGRegister.crgpassword2.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease re-enter a value for the \"Password\" field.");

      document.frmCRGRegister.crgpassword2.focus();

	      return(false);

	}

		return (true);

} // *** end ValidatePassword2



function MatchCRGPasswords() {



	if (document.frmCRGRegister.crgpassword2.value != document.frmCRGRegister.crgpassword.value) {

		alert("You must complete all of the required fields to register.Passwords do not match, please re-enter a values for the \"Password\" fields.");		

		document.frmCRGRegister.crgpassword.value = "" ;

		document.frmCRGRegister.crgpassword2.value = "" ;

		document.frmCRGRegister.crgpassword.focus();

				

	    return(false);

}	else{

		return(true);

	}	  

}  // *** end MatchPasswords



function ValidateCRGDownloadLname() {

   if (isBlank(document.frmCRGRegister.lastname.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Last Name\" field.");

      document.frmCRGRegister.lastname.focus();

      return(false);

   }

   return (true);

} // *** end ValidateLname



function ValidateCRGDownloadCompany() {

   if (isBlank(document.frmCRGRegister.company.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Company\" field.");

      document.frmCRGRegister.company.focus();

      return(false);

   }

   return (true);

} // *** end ValidateCompany



function ValidateCRGDownloadAddress1() {

   if (isBlank(document.frmCRGRegister.address1.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Address 1\" field.");

      document.frmCRGRegister.address1.focus();

      return(false);

   }

   return (true);

} // *** end ValidateAddress1



function ValidateCRGDownloadCity() {

   if (isBlank(document.frmCRGRegister.city.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"City\" field.");

      document.frmCRGRegister.city.focus();

      return(false);

   }

   return (true);

} // *** end ValidateCity



function ValidateCRGDownloadState() {

   if (isBlank(document.frmCRGRegister.state.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"State\" field.");

      document.frmCRGRegister.state.focus();

      return(false);

   }

   return (true);

} // *** end ValidateState



function ValidateCRGDownloadZip() {

   if (isBlank(document.frmCRGRegister.zip.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Zip Code\" field.");

      document.frmCRGRegister.zip.focus();

      return(false);

   }

   return (true);

} // *** end ValidateZip



function ValidateCRGDownloadPhone() {

   if (isBlank(document.frmCRGRegister.phone.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Phone\" field.");

      document.frmCRGRegister.phone.focus();

      return(false);

   }

   return (true);

} // *** end ValidatePhone



function ValidateCRGDownloadEmail() {

   if (isBlank(document.frmCRGRegister.email.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Email Address\" field.");

      document.frmCRGRegister.email.focus();

      return(false);

   }

   return (true);

} // *** end ValidateEmail



function ValidateCRGDownloadCountry() {

   if (isBlank(document.frmCRGRegister.country.value) == true) {

      alert("\nYou must complete all of the required fields to register.\nPlease enter a value for the \"Country\" field.");

      document.frmCRGRegister.country.focus();

      return(false);

   }

   return (true);

} // *** end ValidateCountry



//2004.1.13 UPdate



list 	=new Array(7)

list[0] =new Array( "../About_us/companyBG.html","aboutus");

list[1] =new Array( "../About_us/sitelist.html","sitelist");

list[2] =new Array( "../Products/prodhist.html","prodhist");

//list[3] =new Array( "../etimes/eTimeHome.html","etime");

list[3] =new Array( "../Products/prodHome.html","products");

list[4] =new Array( "http://www.dupontelastomers.com/","dpeusa");

list[5] =new Array( "../Header/index.asp","home");

list[6] =new Array( "../contactUs/contactUs.asp","inquiry");



llist 	=new Array(7)

llist[0] = "../About_Us/companyBG.html";

llist[1] = "../About_us/sitelist.html";

llist[2] = "../Products/prodhist.html";

llist[3] = "../ETimes/etimeHome.html";

llist[4] = "../Products/prodHome.html";

llist[5] = "http://www.dupontelastomers.com/";

llist[6] = "../contactUs/contactUs.asp";



elist 	=new Array(11);

elist[0]	=new Array("../Etimes/etime2001spring.html","2001 Spring");

elist[1]	=new Array("../Etimes/etime2001fall.html","2001 Fall");

elist[2]	=new Array("../Etimes/etime2002spring.html","2002 Spring");

elist[3]	=new Array("../Etimes/etime2002summer.html" ,"2002 Summer");

elist[4]	=new Array("../Etimes/etime2002fallv.html","2002 Fall Viton");

elist[5]	=new Array("../Etimes/etime2002fall.html" ,"2002 Fall");

elist[6]	=new Array("../Etimes/etime2003spring.html" ,"2003 Spring");

elist[7]	=new Array("../Etimes/etime2003summer.html" ,"2003 Summer");

elist[8]	=new Array("../Etimes/etime2003fall.html","2003 Fall");

elist[9]	=new Array("../Etimes/etime2004spring.html","2004 Spring");



elist[10]	=new Array("../Etimes/etime2004fall.html","2004 Fall");



function writeETimeMenu(){

	for(i=elist.length-1;i>=0;i--){

		document.write('<tr valign="top">');

		document.write('<td><a id="LIST" href="'+elist[i][0]+'" >'+elist[i][1]+'</a></td>');

		document.write('</tr>');

	}



}



function writeLeftMenu(){

	//document.write('<table cellspacing="0" cellpadding="0" width="170px" bgcolor="#99C3D7">');

		document.write('<a href="../Header/whatsnew.html"><img src="../images/home/whatsnew.gif" border="0"></img></a><br><br>');
		
		document.write('<a href="../Header/whatsnew.html#090325" style="margin:5px;"><Small>関連会社の変更</Small></a><br><br>');
		
		document.write('<a href="../Header/whatsnew.html#090326" style="margin:5px;"><Small>会社概要の変更</Small></a><br><br>');
		
		document.write('<a href="../Header/whatsnew.html#0506211" style="margin:5px;"><Small>個人情報保護法に関するお知らせ</Small></a><br><br>');

	//document.write('</table>');

}





function writeTopMenu(idx){

	// subtracting 1 from idx to compensate for taking out the ETI menu item

	if (idx > 3) {

		idx = idx - 1;

	}

	for(i=0;i<7;i++){

		if(idx==i){

			if(i==3)

				document.write('<a href="'+list[i][0]+'" onMouseOver="popUp(\'Menu1\',event)" onMouseOut="popDown(\'Menu1\')"><img src="../images/topNav/'+list[i][1]+'_on.gif" height="18" alt="'+list[i][1]+'" border="0" name="'+list[i][1]+'"></a>');

			else

				document.write('<a href="'+list[i][0]+'"><img src="../images/topNav/'+list[i][1]+'_on.gif"  height="18" alt="'+list[i][1]+'" border="0" name="'+list[i][1]+'"></a>');

		}

		else{

			if(i==3)

				document.write('<a href="'+list[i][0]+'" onMouseOver="document.'+list[i][1]+'.src=\'../images/topNav/'+list[i][1]+'_on.gif\';popUp(\'Menu1\',event)" onMouseOut="document.'+list[i][1]+'.src=\'../images/topNav/'+list[i][1]+'_off.gif\';popDown(\'Menu1\')"><img src="../images/topNav/'+list[i][1]+'_off.gif" height="18" alt="'+list[i][1]+'" border="0" name="'+list[i][1]+'"></a>');

			else

				document.write('<a href="'+list[i][0]+'" onMouseOver="document.'+list[i][1]+'.src=\'../images/topNav/'+list[i][1]+'_on.gif\'" onMouseOut="document.'+list[i][1]+'.src=\'../images/topNav/'+list[i][1]+'_off.gif\'"><img src="../images/topNav/'+list[i][1]+'_off.gif" height="18" alt="'+list[i][1]+'" border="0" name="'+list[i][1]+'"></a>');

		}

	}

}



