function openWin(url,winName,features)
{
	window.open(url,winName,features);
}


function open_fullscreen(url) {
fullscreen = window.open(url, "fullscreen", 'top=0,left=0,width='+(screen.availWidth-10)+',height='+(screen.availHeight-48)+',fullscreen=yes,toolbar0,location=0,directories=0,status=0,menubar=0,resizable=0,scrolling=0');

//var movie = window.document.nc_flv_player_home;
//movie.TSetProperty("/player.paused", paused, 1);

}
  

function go() {
     mainlinks=document.linklist.full_list.options[document.linklist.full_list.selectedIndex].value;
	if (mainlinks!="") {
	location.href = mainlinks;
	}
 } 
 

//rollover images
function doPreload()
{
	var the_images = new Array('/images/more_btn_on.gif')
	preloadImages(the_images);
}

function preloadImages(the_images_array) {
	for(loop = 0; loop < the_images_array.length; loop++) {
   		var an_image = new Image();
		an_image.src = the_images_array[loop];
	}
}

function swapIt(imgName,imgSrc) {
	document.images[imgName].src = imgSrc;
}
//end rollover images



