﻿<!--
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,titlebar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=470,height=700,left = 200,top = 0');");
}

function clearTextBox(sourceControl)
{
	var source = (document.getElementById(sourceControl.id));
	var searchString = (source.value);	

	if(searchString == "Author, Title, Keyword or ISBN")
	{
		source.value = '';
	}
}
//-->