/**
 *	Digital Copy: 10,000BC download page script
 *  	Warner Brothers
 *  	Author: Ramil Jugao
*/


var redirectMsg = "You are now being redirected to a non-Warner Bros. site. Thank you for choosing your Digital Copy and enjoy your movie.";

/**
*	Visit the store
*/
function visitStore(url) {
	var url = url;

	// show the redirect popup
	buildRedirectPopup();
	
	// change the page in 4 seconds
	new PeriodicalExecuter( function(pe) {
		removeRedirectPopup();
		document.location.href = url;
		pe.stop();
	}, 4);
}
 
 
/**
*	Create the redirect popup
*/
function buildRedirectPopup() {
	// hide contents of document body
	$('bounding-area').setOpacity(0.3);
	$('instructions').setOpacity(0.3);
	
	// create the popup div
	redirectPopup = new Element('div', {id: 'redirect-popup'}).update(redirectMsg);
	redirectPopup.insert('<br/><br/>').insert(new Element('img', {src: '../../images/common/loadingbar.gif'}));
	$('popup-holder').insert(redirectPopup);
	
}


/**
*	Remove the redirect popup
*/
function removeRedirectPopup() {


	$('redirect-popup').remove();

	// show document body
	$('bounding-area').setOpacity(1);
	$('instructions').setOpacity(1);
}