function OpenWindow(url,height,width)
{
window.open(url,"profilelarge","toolbar=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, height=" + height + ", width=" + width + ",addressbar=no")
}
function OpenWindow2(url,height,width)
{
window.open(url,"smallwindow","toolbar=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, height=" + height + ", width=" + width + ",addressbar=no")
}
function OpenResizableWindow(url,height,width)
{
window.open(url,"profilelarge","toolbar=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, height=" + height + ", width=" + width + ",addressbar=no")
}
function ChangePhotoA(imageId, fileName, lnk, lnkId, count)
{
    if (document.images[imageId] != null)
	{
		document.images[imageId].src = "images/" + fileName;
		if (lnk != null) 
		{
			//reset the others
			for (var i=1; i<=count; i++) {
				document.all[lnkId + i].style.color = "#4169e1";
			}
			lnk.style.color = "yellow";
		}
	}
}
