<!-- 
function checkCookie(section) {
	var allCookies = document.cookie;
	var pos = allCookies.indexOf( section + '=skip' );
	
	if ( pos != -1 ) {
		moviePlay = 0;
	}
	else {
		document.cookie = section + '=skip';
		moviePlay = 1;
	}
}
//-->