//function checkSearch()
//{
//	searchkey = trimSpaces(document.form1.searchkey.value) ;
//	if(searchkey.length<=0)
//	{
//		alert("Enter a string to search");
//		document.form1.searchkey.focus();
//		return false;
//	}
//	return true;
//}

function showAd(imgName) {
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;
	wWidth = 530;
	wHeight = sHeight - 80;
	sTop = (sHeight - wHeight) / 2;
	sLeft = (sWidth - wWidth) / 2;
	window.open("Forms/ccr.aspx?id=" + imgName, "sbntAd", "width=" + wWidth + ",height=" + wHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=1,resizable=0");
	return;
}

//function showkb(id){
//	window.open("kbshow.asp?id=" + id, id, "width=600,height=300,scrollbars=1");
//}