function url(link){location.href = link;}

function displayDiv(divId,Status){
    document.getElementById(divId).style.display = Status;
}

function showImage(id, text){

	var newdiv = document.createElement('div');
	var divIdName = 'myDiv';
	
	if(document.getElementById(divIdName) != null){
		document.body.removeChild(document.getElementById(divIdName));
	}

	nowL = id.offsetLeft+parseInt(72);
	nowT = id.offsetTop;

	newdiv.innerHTML = ''
	newdiv.setAttribute('id',divIdName);
	newdiv.setAttribute('style','position:absolute; left:'+nowL+'px; top:'+nowT+'px; z-index:999998; margin-left:-332px; border:1px solid #CCC; padding:5px; background:#FFF url(/images/loading/loaderHorizantal.gif) center center no-repeat; width:400px; text-align:center; min-height:100px;');

	newdiv.innerHTML += '<div>';
		newdiv.innerHTML += '<div class="imageTop"><img src="/images/icon/closeBig.png" onClick="displayDiv(\'myDiv\',\'none\');" class="pointer"></div>';
		newdiv.innerHTML += '<div><img src="/ProductMedia/'+text+'"></div>';
	newdiv.innerHTML += '</div>';

	document.body.appendChild(newdiv);

}
