﻿// JScript File
function rollover_picture(name, x)
{
    if(x <= 9)
	{
	 x = '0' + x
	}
document.getElementById('ctl00_cpMainContent_rtp_' + name + 'Photos_ctl' + x + '_selectPic').style.background = "red";
document.getElementById('ctl00_cpMainContent_rtp_' + name + 'Photos_ctl' + x + '_lblPicName').style.color = "red";
//alert('in')
}

function rollout_picture(name,x)
{
    if(x <= 9)
	{
	 x = '0' + x
	}

document.getElementById('ctl00_cpMainContent_rtp_' + name + 'Photos_ctl' + x + '_selectPic').style.background = "white";
document.getElementById('ctl00_cpMainContent_rtp_' + name + 'Photos_ctl' + x + '_lblPicName').style.color = "black";
//alert('out')
}

function valSearch(thisform)
{
	strError = ""
	
	if(thisform.txtSearch.value == "") {
		strError += "Please enter some search text\n"
	} 
	
	if(strError == "") {
		thisform.submit();
	}
	
	else
	{
		alert(strError)
		return false;	
	}
}




function ScrollPage()
{
    
}
