<!--   // Array ofmonth Names
function writedate(){
var mNames = new Array( "January","February","March","April","May","June","July","August","September","October","November","December");
var now = new Date();
thisYear = now.getYear();
thisH=(now.getHours()<10)?"0"+now.getHours():now.getHours();
thisM=(now.getMinutes()<10)?"0"+now.getMinutes():now.getMinutes();
thisS=(now.getSeconds()<10)?"0"+now.getSeconds():now.getSeconds();
if(thisYear < 1900) {thisYear += 1900}; // Y2K compatibility problem
document.write(mNames[now.getMonth()] + " " + now.getDate() + ", " + thisYear +  " " +  thisH + ":" + thisM + ":" + thisS);
}


function popit(locc,hcord,wcord){
window.open(locc,'popit','height=' + hcord + ',width=' + wcord + ',toolbar=no,titlebar=no,resizable=no,directories=no,top=200,left=200,status=no,scrollbars=yes')
}

function chk_form(){
	var getresp=confirm("Your order is ready to be processed.\n Please click on the 'ok' button if you are ready to continue. ");
	if(getresp){
		document.forms['epc_chkout'].submit();
	}
}

function o_show(o){
	var mailo=document.getElementById('banko').style;
	var banko=document.getElementById('mailo').style;	
	//alert(o);
	switch(o){
		case '1':
			mailo.display='none';
			banko.display='none';			
		break;
		case '8':
			mailo.display='block';
			banko.display='none';
		break;
		case '7':
		case '10':
			mailo.display='none';
			banko.display='block';
		break;
	}
}

function c_show(){
	var o=document.getElementById('tdcomment').style;
	if(o.display=='none'){
		o.display='';
	}else{
		o.display='none';
	}
}
// -->
