/* 

Quality Essentials Pty Ltd Common JavaScript Library
Create by Sam Lomax - 24th March 2005
-----------------------------------------------------------
This scripts published in the document are the property of
Quality Essentials Pty Ltd and can NOT be used without
expressed written permission.

*/

/* This function will execute after each page has completely loaded */
function init(){
  // do nothing
}

function showPic(folder, page_no, picNum){
	var picBox

	picBox = document.getElementById('preview');
	picBox.innerHTML = '<img src="../images/' + folder + '/o_p0' + page_no + '_i0' + picNum + '.jpg" width="190" height="204">';
	
}

function popUp(folder, page_no, picNum){
	var picBox;
	var windowWidth = "600"	;
	var windowHeight = "650";
	var htmlPageName = "../images/" + folder + "/h_p0" + page_no + "_i0" + picNum + ".jpg";
	var configString = "width=" + windowWidth + ", height=" + windowHeight + ", resizable";
	
	window.open(htmlPageName, "a", configString);
	
}