function openPopup(aObject, url, width, height){
	var defWidth = 500;
	var defHeight = 500;
	if( !width ){width = defWidth;}
	if( !height ){height = defHeight;}
	if( !url ){url = aObject.href;}
	window.open(url, "Link", "width="+width+",height="+height+",scrollbars=yes,resizable=yes");
	//alert(url);
	
	return false;
}

function showSlice(sid){
	document.getElementById('img_slice').src = '/i/'+sid+'.jpg';
}

function showPOS(sid){
	var eID = 'div_'+sid;
	if(document.getElementById(eID) != null){
		document.getElementById('container').innerHTML = document.getElementById(eID).innerHTML;
	}else{
		document.getElementById('container').innerHTML = " ";
	}
	//alert(document.getElementById(eID));
}
function initPOS(type){
	showSlice(type);
	showPOS(type);
}

