// JavaScript Document
function session(id){
newwin=window.open("/events/session.cfm?id="+id,"newwin","width=530,height=500,scrollbars=1,top=100,left=100,resizable=1");
newwin.focus();
}
function speaker(id,eid){
newwin=window.open("/events/speaker.cfm?id="+id+"&eid="+eid,"newwin","width=530,height=500,scrollbars=1,top=100,left=100,resizable=1");
newwin.focus();
}

function eventspeakers(eid){
newwin=window.open("/events/speakers.cfm?eid="+eid,"newwin","width=530,height=500,scrollbars=1,top=100,left=100,resizable=1");
newwin.focus();
}

function eventbios(eid){
newwin=window.open("/events/speakerbios.cfm?eid="+eid,"newwin","width=530,height=500,scrollbars=1,top=100,left=100,resizable=1");
newwin.focus();
}

function exhibitor(id){
newwin=window.open("/events/exhibitor.cfm?id="+id,"newwin","width=530,height=500,scrollbars=1,top=100,left=100,resizable=1");
newwin.focus();
}

function eventsessions(){
id=arguments[0];
type=arguments[1];
if(arguments.length>2) 
	{
	date=arguments[2];
	}
else
	{
	date=0;
	}
newwin=window.open("/events/eventsessions.cfm?id="+id+"&type="+type+"&date="+date,"newwin","width=530,height=500,scrollbars=1,top=100,left=100,resizable=1");
newwin.focus();
 }