// JavaScript Document

// Menu for sectioned front end pages
function LoadPage(html_doc){
self.location.href = html_doc;
}
function LoadNewPage(html_doc){
top.location.href = html_doc;
}
function LoadFlashPage(html_doc){
eval("window.open('" + html_doc + "', '_blank', 'width=580, height=550, top=10, left=10, scrollbars=no,menubar=NO,toolbar=NO')");
}

var wWin;

function LoadBrochure(html_doc){
 	if(window.wWin && !wWin.closed){
	wWin.close();
	}
 wWin = eval("window.open('" + html_doc + "', '_blank', 'width=390, height=480, top=10, left=10, scrollbars=yes,menubar=NO,toolbar=NO,resizable=yes')");
}




function CloseBrochure(){
	if (wWin!=null)
		wWin.close();
}

function LoadPdf(pdffile){
//window.open('pdffiles/colouring_book.pdf', '_blank');
eval ("window.open('"+pdffile+"', '_blank')");
//window.open('pdffile', '_blank');

}