//-----------------------------------//
//--- "WRITE NAVIGATION" FUNCTION ---//
//-----------------------------------//


function writeNav(link,name,title) {
		document.write('<tr><td class="navstyle" align="center"><a title="'+title+'" href="'+link+'">'+name+'</a></td></tr>');
}



//-----------------------------------//
//---- BREAK OUT OF FRAMES TOOL -----//
//-----------------------------------//

if (top.location != this.location) {
    top.location.href = document.location.href;
}


//-----------------------------------//
//---- VIDEO PLAYER POP CONTROL -----//
//-----------------------------------//

function vidPlayer(idnum) {

	window.open('/pages/videoplayer/video.php?vid='+idnum,'vidBox','width=600,height=430,scroll=no,status=no');

}

//-----------------------------------//
//--- TERMS OF SERVICE FUNCTIONS ----//
//-----------------------------------//

$("#newsdubs").submit(function() {
	if($("tosaccept").is(':checked')) {
		return true;
	} else {
		alert("You must accept the Terms of Service.");
		return false;
	}
});


//-----------------------------------//
//---- NEWS DUBS: CLIENT/VIEWER -----//
//-----------------------------------//


function doCheck() {
	if(document.newsdubs.ima.options[document.newsdubs.ima.selectedIndex].value == "Client")
	{
		$("#cblock").show();
		$("#companyblock").slideDown("normal");
		$("#companyblock2").slideDown("normal");
	}
	else
	{
		$("#companyblock").slideUp("normal");
		$("#companyblock2").slideUp("normal");
	}
}


function newsstoryimgs(jimages,box) {
	for(i=0;i<jimages.length;i++) {
		box.html("<img src=\""+jimages[i]['src']+"\" title=\""+jimages[i]['caption']+"\">");
	}
}