function popupTerms(){
	window.open('Popup_terms.asp','Terms','width=620,height=400,scrollbars=yes');
}

function openPopupWindow(theURL,winName,features) {
	var focusWindowName
            focusWindowName = window.open(theURL,winName,features)
	focusWindowName.focus()
}

function openRomanceCard()
{
	var focusWindowName
	focusWindowName = window.open('POPUP_Romance_Card.htm','POPUP_Romance_Card','Width=493, Height=293')
	focusWindowName.focus()
}		

function codeValidation()
{
	var code
	
	code = document.code_search.code.value
	
	if(code == "")
	{
		alert("Please enter a product code and try again.")
		return false
	}
	else
	{
		return true
	}
}			

function keywordsValidation()
{
	var keywords
	var price
	
	keywords = document.keywords_search.keywords.value
	price = document.keywords_search.price.value
	
	if(keywords == "" && price == "Any Price")
	{
		alert("Please enter a keyword and try again.")
		return false
	}
	else
	{	
		return true
	}	
}	