function reLoadParent() {
	parent.location.reload();
}

function gotoPage(page) {
	window.location = "http://www.LiveNetVideos.com/index.cfm?fuseaction=" + page;	
}

function showPop(url,w,h)
//use: onclick="showPop('pop_titletips.asp',540,370)"
{
	var rnumber = Math.round(10000*Math.random())
	if(w < 100) w = 540;
	if(h < 100) h = 500;
	if(w == 0) w = 540;
	url = "http://www.LiveNetVideos.com/" + url;
	newwindow=window.open(url,'popwin','width='+w+',height='+h+',left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}

function openMovie(murl)
//use: onclick="showPop('pop_titletips.asp',540,370)"
{
	//default values
	var w = 456;
	var h = 390;
	var rnumber = Math.round(10000*Math.random());
	
	url = "http://www.LiveNetVideos.com/movie.cfm?murl=" + murl;
	newwindow=window.open(url,'video','width='+w+',height='+h+',left=0,top=0,resizable=no,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
	//return false;
}

//confirm deletion popup
function deletethis(msg,gotourl){
	var answer = confirm (msg);
	if (answer) {
		location.href = gotourl;
	} else
		return false;
		
	return;	
}