/* - - - - - - - - - - - - - - - - - - - - -
 * Summary:			Javascript file for ypcfa.net
 * URL:				http://www.ypcfa.net/
 * Notes: 			functions for screenshot pop-ups and preloading/displaying roll-over images
 * Created: 		??/05/05
 * Last Updated: 	30/08/05
- - - - - - - - - - - - - - - - - - - - - */

/*
	Standards Compliant Rollover Script
	Author : Daniel Nolan
	http://www.dnolan.com/code/js/rollover/
*/

function initRollovers() {
	if (!document.getElementById) return
	
	var aPreLoad = new Array();
	var sTempSrc;
	var aImages = document.getElementsByTagName('img');

	for (var i = 0; i < aImages.length; i++) {		
		if (aImages[i].className == 'imgover') {
			var src = aImages[i].getAttribute('src');
			var ftype = src.substring(src.lastIndexOf('.'), src.length);
			var hsrc = src.replace(ftype, '_o'+ftype);

			aImages[i].setAttribute('hsrc', hsrc);
			
			aPreLoad[i] = new Image();
			aPreLoad[i].src = hsrc;
			
			aImages[i].onmouseover = function() {
				sTempSrc = this.getAttribute('src');
				this.setAttribute('src', this.getAttribute('hsrc'));
			}	
			
			aImages[i].onmouseout = function() {
				if (!sTempSrc) sTempSrc = this.getAttribute('src').replace('_o'+ftype, ftype);
				this.setAttribute('src', sTempSrc);
			}
		}
	}
}

window.onload = initRollovers;

//screenshot pop-ups
function stage11() {
	window.open ('screenshots/stage11.htm',"stage11","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function stage12() {
	window.open ('screenshots/stage12.htm',"stage12","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function stage13() {
	window.open ('screenshots/stage13.htm',"stage13","width=730,height=450,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function stage2() {
	window.open ('screenshots/stage2.htm',"stage2","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function stage31() {
	window.open ('screenshots/stage31.htm',"stage31","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function stage32() {
	window.open ('screenshots/stage32.htm',"stage32","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function stage41() {
	window.open ('screenshots/stage41.htm',"stage41","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function stage42() {
	window.open ('screenshots/stage42.htm',"stage42","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function previous1() {
	window.open ('screenshots/previous1.htm',"previous1","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function previous2() {
	window.open ('screenshots/previous2.htm',"previous2","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function chat1() {
	window.open ('screenshots/chat1.htm',"chat1","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function chat2() {
	window.open ('screenshots/chat2.htm',"chat2","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function email() {
	window.open ('screenshots/email.htm',"email","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function forum() {
	window.open ('screenshots/forum.htm',"forum","width=730,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function video1() {
	window.open ('screenshots/video1.htm',"video1","width=540,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
function video2() {
	window.open ('screenshots/video2.htm',"video2","width=540,height=423,location=0,menubar=0,resizable=1,scrollbars=1,status=1,titlebar=0,toolbar=0,screenX=80,left=50,screenY=30,top=60");
}
