// ----- CMO Book page ------

// Module: cmobooks.js ver.1.1

// Date 4.7.2001

// Author Rod Fletcher

// This script is Copyright ©1999 - 2001 Rod and Sue Fletcher.


/* Maintenance ----------------
	
   Version 1.0 to 1.1 - 11.01.2006 Update for bookharbour window

   
------------------------------- */




var domType = location.search.substr(1);

if (domType == '') {
	location = '../../index.html';
}

hdr2 = new Image();
hdr2.src = '../images/bookshdr2.jpg';


function formatPage() {

	switch(domType) {

		case '0NN4+':

			break;


		case '1NN6+':

			changeNNStyleBySelector('.subhead6', 'backgroundColor', '#C5C5E7');
			changeNNStyleBySelector('.subhead2', 'backgroundColor', '#C5C5E7');
			

		break;


		case '1IE5+':

			changeIEStyleBySelector('.subhead6', 'backgroundColor', '#C5C5E7');
			changeIEStyleBySelector('.subhead2', 'backgroundColor', '#C5C5E7');

			if (screen.colorDepth > 16) {
				document.getElementById('hdr2').src = hdr2.src;
			}

		break;

	}
}




function amazonWindow(isbn) {

	switch(domType) {


		case '1NN6+':

			if (isbn == 'home') {
				var amazonwindow = window.open("http://www.amazon.co.uk/exec/obidos/redirect-home?tag=chichestermar-21&site=amazon", "AMAZON", "width=670,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,screenX=0,screenY=0");
			}
			else {
			      var amazonwindow = window.open("http://www.amazon.co.uk/exec/obidos/ISBN=" + isbn + "/chichestermar-21", "AMAZON", "width=670,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,screenX=0,screenY=0");
			}


		case '1IE5+':

			if (isbn == 'home') {
				var amazonwindow = window.open("http://www.amazon.co.uk/exec/obidos/redirect-home?tag=chichestermar-21&site=amazon", "AMAZON", "width=670,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,left=0,top=0");
			}
			else {
				  var amazonwindow = window.open("http://www.amazon.co.uk/exec/obidos/ISBN=" + isbn + "/chichestermar-21", "AMAZON", "width=670,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,left=0,top=0");
			}
	}
}




function bookHarbourWindow(catno) {

	switch(domType) {


		case '1NN6+':
		
			if (catno == 'home') {
				
				var bhwindow = window.open("http://62.189.186.112/epages/Store.storefront/?ObjectPath=/Shops/BookHarbour", "BOOKHBR", "width=670,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,screenX=0,screenY=0");
			}
			else {
				  
				  var bhwindow = window.open("http://62.189.186.112/epages/Store.storefront/?ObjectPath=/Shops/BookHarbour/Products/" + catno, "BOOKHBR", "width=670,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,screenX=0,screenY=0");
			}

		case '1IE5+':
		
			if (catno == 'home') {
				
				var bhwindow = window.open("http://62.189.186.112/epages/Store.storefront/?ObjectPath=/Shops/BookHarbour", "BOOKHBR", "width=670,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,left=0,top=0");
			}
			else {
				  
				  var bhwindow = window.open("http://62.189.186.112/epages/Store.storefront/?ObjectPath=/Shops/BookHarbour/Products/" + catno, "BOOKHBR", "width=670,height=400,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,left=0,top=0");
			}
	}
}

function nextSection(section) {

	location = 'cmobooks.html?' + domType + '#' + section;

}


// END
