function ColorO(thisLink, thisColor)
{
	if(is_ie){
		thisLink.style.color=thisColor;}
}

function MouseOver(thisLink)
{
	if(is_ie){
		thisLink.style.cursor='hand';
		thisLink.style.color='blue';}
}

function MouseOut(thisLink)
{
	if(is_ie){
		thisLink.style.color='red';}
}

function PicOver(thisLink,picObj,picName)
{
	if(is_ie){
		thisLink.style.color='blue';
		if (picObj){
		picObj.src='images/photo_' + picName + '_00_sm_2.gif';}}
}

function PicOut(thisLink,picObj,picName)
{
	if(is_ie){
		thisLink.style.color='#A7A2E6';
		if(picObj){
		picObj.src='images/photo_' + picName + '_00_sm.gif';}}
}

function Show(thisHRef)
{
	parent.frames[0].href=thisHRef;
}