/**
 *	Digital Copy Minisite
 *  	Warner Brothers
 *  	Author: Ramil Jugao
*/



Event.observe(document, 'dom:loaded', function () {

	// check if system is not windows
	if(navigator.userAgent.indexOf('Windows') == -1) {
		// show message for macs
		$('pc-content').hide();
		$('mac-content').show();
	}
	
}); 	

/**
*	Download file
*/
function download(url) {
	window.location.href = url;
}
 
 

/**
*	Visit url
*/
function visit(url) {
	window.location.href = url;
}
 
 
