// JavaScript Document

function zoomInOut(newWidth,newHeight,whichImage)
{
	whichImage.style.width=newWidth;
	whichImage.style.height=newHeight;
}

function popupRyan(FEATURES) 
{ 
	CONTENT = "<html><head><title>Installations by Ryan Jean Ltd.</title><link rel='stylesheet' href='style.css'></link></head>" + "<body><center><form><img src='images/gif/ryan.gif' alt='Installations by Ryan Jean Ltd.' title='Installations by Ryan Jean Ltd.' /></form>" + "</center>"+ "</body></html>";	
	pop = window.open("","",FEATURES);
	pop.document.write(CONTENT);
}