function center_window (win,width,heigth)
{
	win.moveTo((screen.width-width)/2,(screen.height-heigth)/2);
  
} 

function openDialog(url,name,width,height){
		 
	 win=window.open(url,name,"height="+height+",width="+width+",location=no,menubar=no,resizable=yes,scrollbars=auto,status=no");
	 
	 center_window(win,width,height);
	 win.focus();
	lastwin = win;
}

function closeProduct(id_product)
{
	var l = document.getElementById(id_product);
	l.style.visibility='hidden';
}

var productIndex = 3;

function showProduct(id_product)
{
	closeProduct('full_web');
	closeProduct('full_catalogue');
	closeProduct('full_shop');
	
	var l = document.getElementById('full_'+id_product);
	l.style.visibility='visible';
	productIndex++;
	l.style.zIndex = productIndex;
									
}

function createPortfolioLink(hasSC,id)
{

	if (hasSC=='Yes')
	{
		var l = document.getElementById('portfolioLink_'+id);
		l.style.display='none';
	}else{
		var l = document.getElementById('portfolioLink_showcase_'+id);
		l.style.display='none';
		
		}
}