// JavaScript Document

var win = null;

function NewWindow(mypage,myname,w,h,scroll) {
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
	win = window.open(mypage,myname,settings);
}

function loadingStatus()  {
	//document.getElementById('pageContent').innerHTML = '<BR><TABLE WIDTH="97%" ALIGN="center" BORDER="0"><TR><TD ALIGN="center"><IMG SRC="/images/loading.gif" WIDTH="49" HEIGHT="50" BORDER="0"></TD></TR><TR><TD ALIGN="center">Loading your current movies....</TD></TR></TABLE>';
	document.getElementById('contentpad').style.display = "none";
	document.getElementById('pageLoading').style.display = "block";
	document.getElementById('pageLoading').style.align = "center";
	document.getElementById('pageLoading').style.textAlign = "center";
	document.getElementById('pageLoading').style.backgroundColor = "white";
	setTimeout('document.images["imgLoadingStatus"].src = "/images/large-loading.gif"', 500);
	window.location = "http://devtwcmovieclub.twcsyrweb.com/account.cfm";
}

/*function addBookmark(title, url) {

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); 
	} else if(window.opera && window.print) { // Opera Hotlist
		return true; 
	}
} */

 

function addBookmark(title, url){
 	if(window.sidebar){ // Firefox
		window.sidebar.addPanel(title, url,'');
	}else if(window.opera){ //Opera
		var a = document.createElement("A");
		a.rel = "sidebar";
		a.target = "_search";
		a.title = title;
		a.href = url;
		a.click();
	} else if(document.all){ //IE
		window.external.AddFavorite(url, title);
	} else {
		alert("Sorry! Your browser doesn't support this function. Please bookmark this page manually.");
	}
}

 