/*
-------------------------------------------------------------
Document:	'default script'
Project:	Serinyá
Author:		Micke Andersson (anderssonweb.se)
Created:	2008-04-19 13:45
Copyright:	© 2008 ANDERSSON WEB & SUPPORT
-------------------------------------------------------------*/


/* Loader
-------------------------------------------------------------*/
var load = "<img src=\"./pics/loading_black.gif\" alt=\"loader\" style=\"margin-top: 200px; width: 66px; height: 66px;\" />\n";
/* View image
-------------------------------------------------------------*/
function doExpImage(item_number){
	if(item_number){
		mysack = new sack();
		mysack.requestFile	= "./modules/ajax.show.image.php?item_number=" + item_number;
		mysack.onLoading	= function(){ getElemRefs("image-container").innerHTML = load; };
		mysack.onError		= function(){ alert("doExpImage() failure: " + mysack.response + "\n"); };
		mysack.onCompletion	= function(){ getElemRefs("image-container").innerHTML = mysack.response; };
		mysack.runAJAX();
	}else{
		alert("doExpImage() failure: missing paramenter 'item_number'\n");
		return false;
	}
}