<!--
// this script determines whether the user's browser
// is IE3, IE4, or Netscape 4, and loads a different
// style sheet for each; for other browsers,
// it does nothing

//from ultimate browser sniffer.
var agt = navigator.userAgent.toLowerCase();
var is_major = parseInt(navigator.appVersion);
var is_minor = parseFloat(navigator.appVersion);
var is_nav = ( (agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
	      && (agt.indexOf('compatible') ==-1) && (agt.indexOf('opera')==-1)
	      && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1) );
var is_nav4 = (is_nav && (is_major == 4));
var is_gecko = (agt.indexOf('gecko') !=-1);
//var is_ie = ((agt.indexOf("msie") !=  -1) && (agt.indexOf("opera") == -1));
var is_ie = (agt.indexOf("msie") !=  -1); // include opera.

function itsNetscape() {
    document.write("<style type='text/css'>");
    document.write("<!--");
    document.write(".negTitle { font-size: 9pt; }");
    document.write("A.negSubItem { color : LightCyan; text-decoration : none; font-size : 8pt; 	font-family : Arial, Helvetica, Geneve, Swiss, sans-serif; }");
    document.write("A.negSubItem:active { color : LightCyan }");
    document.write("A.negSubItem:visited { color : LightCyan }");
    document.write("A.negMainItem { color : White; text-decoration : none; font-size : 9pt;	font-weight : bold; line-height : 15pt; font-family : Arial, Helvetica, Geneve, Swiss, sans-serif; }"); 
    document.write("A.negMainItem:active { color : White }");
    document.write("A.negMainItem:visited { color : White }");
    document.write("-->");
    document.write("</style>");
    document.write("<BR>");
}	

function ieVersion() {
    document.write("<style type='text/css'>");
    document.write("<!--");
    document.write(".negTitle { font-size: 8pt; }");
    document.write(".negSubItem { color : LightCyan; text-decoration : none; font-size : 7pt; font-family : Arial, Helvetica, Geneve, Swiss, sans-serif; }");
    document.write("A.negSubItem:active { color : LightCyan }");
    document.write("A.negSubItem:visited { color : LightCyan }");
    document.write("A.negSubItem:visited:hover { color : Red }");
    document.write(".negMainItem { color : White; text-decoration : none; font-size : 8pt; font-weight : bold;	font-family : Arial, Helvetica, Geneve, Swiss, sans-serif; }");
    document.write("A.negMainItem:active { color : White }");
    document.write("A.negMainItem:visited { color : White }");
    document.write("A.negMainItem:visited:hover { color : Red }");
    document.write("-->");
    document.write("</style>");
}

if(is_nav4){
	itsNetscape()
    }
else if(is_ie || is_gecko){
	ieVersion();
    }
//-->

var loc = document.location.toString();

document.write("<TABLE CELLSPACING='0' CELLPADDING='5' BORDER='0' ALIGN='LEFT'>");

<!-- LOGO -->
document.write("<TR><TD VALIGN='TOP' HEIGHT='130'><IMG SRC='images/PDCAT_LOGO.gif' HSPACE=0 BORDER=0 ALIGN='LEFT' ALT='PDCAT2005'></TD></TR>");

<!------------------- Top Page -->
document.write("<TR><TD><A CLASS='negMainItem' HREF='index.html'>Site Top Page</A></TD></TR>");

<!------------------- Call for Papers -->
document.write("<TR><TD><A CLASS='negMainItem' HREF='call.htm'>Call for Papers</A></TD></TR>");


<!------------------- Information for presenters -->
document.write("<TR><TD><A CLASS='negMainItem' HREF='program.htm'>Program</A></TD></TR>");
if( (loc.substring(loc.length, (loc.length-14))=="program.htm") ||
(loc.substring(loc.length, (loc.length-10)) == "tutorial.htm")
 ) {
	document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='program.htm'>Keynote Speeches</A></TD></TR>");
	document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='tutorial.htm'>Tutorials</A></TD></TR>");
	}



<!------------------- Program -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='program.htm'>Program</A></TD></TR>");
if(loc.substring(loc.length, (loc.length-10))=="program.htm") {
document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='program.htm#keynote'>Keynote Speeches</A></TD></TR>");
//document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='program.htm#tutorial'>Tutorials</A></TD></TR>");
}


<!------------------- Information for presenters -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='presenter.html'>Information for presenters</A></TD></TR>");
if( (loc.substring(loc.length, (loc.length-14))=="presenter.html") ||
(loc.substring(loc.length, (loc.length-10)) == "dates.html")
 ) {
	document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='presenter.html'>Information for Presenter</A></TD></TR>");
	document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='dates.html'>Important Dates</A></TD></TR>");
	}


<!------------------- Registration -->
document.write("<TR><TD><A CLASS='negMainItem' HREF='registration.htm'>Registration</A></TD></TR>");



<!------------------- Committees -->
document.write("<TR><TD><A CLASS='negMainItem' HREF='committee.htm'>Committees</A></TD></TR>");
if(loc.substring(loc.length, (loc.length-14))=="committee.html") {
document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='committee.htm#CCOM'>Conference Committee</A></TD></TR>");
document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='committee.htm#PCOM'>Program Committee</A></TD></TR>");
//document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='committee.htm#LCOM'>Local Arrangement Committee</A></TD></TR>");
}



<!--------------------- Travel Information ------------------->

<!-- Travel Information -->

document.write("<TR><TD><A CLASS='negMainItem' HREF='travel.htm'>Travel Info</A></TD></TR>");
if( (loc.substring(loc.length, (loc.length-16))=="travel.htm") || 
(loc.substring(loc.length, (loc.length-9)) == "visa.html") ) 
	{
	document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='travel.htm'>Travel Information</A></TD></TR>");
	document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='visa.html'>Visa & Sightseeing</A></TD></TR>");
	}


<!------------------- Visa Information -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='visa.html'>Visa Info</A></TD></TR>");



<!------------------- Useful Links -->
document.write("<TR><TD><A CLASS='negMainItem' HREF='link.htm'>Useful Links</A></TD></TR>");



<!------------------- Useful Links -->
document.write("<TR><TD><A CLASS='negMainItem' HREF='FAQ.htm'>FAQ</A></TD></TR>");




document.write("<TR><TD HEIGHT='25'></TD></TR>");




<!------------------- Sponsors -->
//document.write("<TR><TD CLASS='negTitle'>Sponsored by</TD></TR>");
document.write("<TR><TD><A CLASS='negMainItem'>Sponsored by</A></TD></TR>");


document.write("<TR><TD ALIGN='Left'><A CLASS='negMainItem' HREF='http://www.jaist.ac.jp' target='blank'>JAIST</A></TD></TR>");


document.write("<TR><TD ALIGN='Left'><A CLASS='negMainItem' HREF='http://www.ieice.org/eng/index.html' target='blank'>IEICE</A></TD></TR>");


document.write("<TR><TD ALIGN='Left'><A CLASS='negMainItem' HREF='http://www.dlut.edu.cn/' target='blank'>DLUT</A></TD></TR>");


document.write("<TR><TD ALIGN='Left'><A CLASS='negMainItem' HREF='http://www.cie-china.org/ieee-beijing/service.htm' target='blank'>IEEE Beijing</A></TD></TR>");







//document.write("<TR><TD ALIGN='Left'><A CLASS='negMainItem' HREF='http://www.dlut.edu.cn/' target='blank'><IMG SRC='./images/dalian.jpg' HSPACE=0 BORDER=0 width=100 ALIGN='LEFT' ALT='DLUT'></A></TD></TR>");


//document.write("<TR><TD ALIGN='Left'><A CLASS='negMainItem' HREF='http://www.cie-china.org/ieee-beijing/service.htm' target='blank'><IMG SRC='./images/IEEE.jpg' HSPACE=0 BORDER=0 width=100 ALIGN='IEEE' ALT='IEEE'></A></TD></TR>");


//document.write("<TR><TD ALIGN='Left'><A CLASS='negMainItem' HREF='http://www.ieice.org/eng/index.html' target='blank'><IMG SRC='./images/IEICE.jpg' HSPACE=0 BORDER=0 width=100 ALIGN='LEFT' ALT='IEICE'></A></TD></TR>");


//document.write("<TR><TD ALIGN='Left'><A CLASS='negMainItem' HREF='http://www.jaist.ac.jp' target='blank'><IMG SRC='./images/JAIST.gif' HSPACE=0 BORDER=0 width=100 height=30 ALIGN='LEFT' ALT='JAIST'></A></TD></TR>");







<!-- Keynote -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='keynote.html'>Keynote</A></TD></TR>");

<!-- Tutorial -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='tutorial.html'>Tutorials</A></TD></TR>");

<!-- Call for Papers for Special Issue IJHPCN -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='cfp_ijhpcn.html'>Special Issue CFP</A></TD></TR>");

<!-- Call for Papers for Industry Presentation -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='cfie.html'>Call for Industry Presentation</A></TD></TR>");

<!-- Call for industry presentation/exhibition -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='industry.html'>Industry Presentation</A></TD></TR>");
//if( (loc.substring(loc.length, (loc.length-13))=="industry.html") ||
//(loc.substring(loc.length, (loc.length-9)) == "cfie.html") ) {
//	document.write("<TR><TD>&nbsp;<A CLASS='negSubItem' HREF='cfie.html'>Call for Industry Presentation</A></TD></TR>");
//	}

<!-- Important Dates -->
//document.write("<TR><TD><A CLASS='negMainItem' HREF='dates.html'>Important Dates</A></TD></TR>");

document.write("</TABLE>");

