// Start side navigation script
//

// 640 By 480 Window
function tut640480(url, tutid) {
	if (tutid==undefined) { tutid=0 }
	var WindowName = 'tut640480_'+tutid;
	OpenTutorial(url,586,682,30,50,WindowName);
}

// 800 By 600 Window
function tut800600(url, tutid) {
	if (tutid==undefined) { tutid=0 }
	var WindowName = 'tut800600_'+tutid;
	OpenTutorial(url,690,819,1,50,WindowName);
}

// 1024 By 768 Window
function tut1024768(url, tutid) {
	if (tutid==undefined) { tutid=0 }
	var WindowName = 'tut1024768_'+tutid;
	OpenTutorial(url,824,1064,50,50,WindowName);
}

// 640 By 360 Window
function tut640360(url, tutid) {
	if (tutid==undefined) { tutid=0 }
	var WindowName = 'tut640360_'+tutid;
	OpenTutorial(url,442,682,30,50,WindowName);
}


// 720 By 405 Window
function tut720405(url, tutid) {
	if (tutid==undefined) { tutid=0 }
	var WindowName = 'tut720405_'+tutid;
	OpenTutorial(url,485,757,30,50,WindowName);
}

// 960 By 475 Window
function tut960475(url, tutid) {
	if (tutid==undefined) { tutid=0 }
	var WindowName = 'tut960475_'+tutid;
	OpenTutorial(url,565,997,30,50,WindowName);
}

function OpenTutorial(url,h,w,t,l,n) {
	if (h==undefined) { h=608 }
	if (w==undefined) { w=682 }
	if (t==undefined) { t=1 }
	if (l==undefined) { l=1 }
	if (n==undefined) { n='TutorialWindow'}
	var options = 'height=' + h + ',width=' + w + ',top=' + t + ',left=' + l + ',status=no,resizable=yes,scrollbars=auto,menubar=0,titlebar=0,toolbar=0';
	TutWindow = window.open(url, n, options);
	TutWindow.focus();
}



function resize () {
	// Nothing to do
	return false;
}
function resizetut640480 () {
	windowresize(586,682);
}
function resizetut800600 () {
	windowresize(690,819);
}
function resizetut1024768 () {
	windowresize(824,1064);
}
function resizetut640360 () {
	windowresize(442,682);
}
function resizetut720405 () {
	windowresize(485,757);
}
function resizetut960475 () {
	windowresize(565,997);
}

function windowresize(h,w) {
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
			top.outerWidth=w;
			top.outerHeight=h;
		} else {
			top.resizeTo(w,h);
		}
	}
}

//
// End side navigation Script