function loadjob(job)
{
	if(job=='fatburen')
	{
		document.location='job_fatburen.aspx'
	}
	else if(job=='hos')
	{
		document.location='job_hos.aspx'
	}
	else if(job=='pov')
	{
		document.location='job_pov.aspx'
	}
	else if(job=='scaniapi')
	{
		document.location='job_scaniapi.aspx'
	}
	else if(job=='scaniansi')
	{
		document.location='job_scaniansi.aspx'
	}
	else if(job=='scaniacc')
	{
		document.location='job_scaniacc.aspx'
	}
	else if(job=='scaniascot')
	{
		document.location='job_scaniascot.aspx'
	}
	else if(job=='scanialogg')
	{
		document.location='job_scanialogg.aspx'
	}
	else if(job=='smarteq')
	{
		document.location='job_smarteq.aspx'
	}
}

function pop(source,width,height)
{
	if(source!="")
	{
		window.open(source,'newwin','scrollbars=yes,resizable=no,status=no,toolbar=no,menubar=no,location=no,height=' + height +',width='+width)
	}
	
}
function pop_scroll(source,width,height)
{
	if(source!="")
	{
		window.open(source,'newwin','scrollbars=yes,resizable=no,status=no,toolbar=no,menubar=no,location=no,height=' + height +',width='+width)
	}
	
}
function pop_scroll_name(source,width,height,name)
{
	if(source!="")
	{
		window.open(source,name,'scrollbars=auto,resizable=no,status=no,toolbar=no,menubar=no,location=no,height=' + height +',width='+width)
	}
	
}

function doClock() {

	if (document.all)
	{
		  Months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
		  Days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

		  window.setTimeout( "doClock()", 1000 );
		  today = new Date();

		  Hours = today.getHours().toString()
		  Minutes = today.getMinutes().toString()
		  Seconds = today.getSeconds().toString()
		  
		  if (Hours.length==1)
		  {
			Hours = "0" + Hours;
		  }
		  if (Minutes.length==1)
		  {
			Minutes = "0" + Minutes;
		  }
		  if (Seconds.length==1)
		  {
			Seconds = "0" + Seconds;
		  }
		  document.all.clock.innerHTML =  Days[today.getDay()] + " " + today.getDate() + " " + Months[today.getMonth()] + "&nbsp;&nbsp;" + Hours + ":" + Minutes + ":" + Seconds
	
	}else if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) == 5){
		
		  Months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
		  Days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

		  window.setTimeout( "doClock()", 1000 );
		  today = new Date();

		  Hours = today.getHours().toString()
		  Minutes = today.getMinutes().toString()
		  Seconds = today.getSeconds().toString()
		  
		  if (Hours.length==1)
		  {
			Hours = "0" + Hours;
		  }
		  if (Minutes.length==1)
		  {
			Minutes = "0" + Minutes;
		  }
		  if (Seconds.length==1)
		  {
			Seconds = "0" + Seconds;
		  }
		  var docAll = document.getElementsByTagName("*")
		  docAll.clock.innerHTML =  Days[today.getDay()] + " " + today.getDate() + " " + Months[today.getMonth()] + "&nbsp;&nbsp;" + Hours + ":" + Minutes + ":" + Seconds
		
	}
}
