// JavaScript Document


function popUpImg(img, imgWidth, imgHeight)
{
	imgUrl = 'http://www.the-farmacy.com/images/' + img + '.jpg';
	popUp(imgUrl, imgWidth, imgHeight, 0, 0, 0);
}

function youTube()
{
	window.open('http://www.the-farmacy.com/youtube.html','youTube','height=350,width=425,resizable=0,scrollbars=no');
}

function popUp(url, width, height, left, top, resizeable) 
{
	newwindow=window.open(url,'htmlname','width='+width+',height='+height+', left='+left+', top='+top+',resizable='+resizeable);
    newwindow.document.write("<img src='"+url+"'>");
    newwindow.document.body.style.margin=0;
	
	if (window.focus) 
	{
		//self.close();
		newwindow.focus();
	}
	
	return false;
}

