/********************************************************/ 
function amGoSearch() 
{ 
	var search_text = document.getElementById('searchFieldText').value; 
	if (search_text.length > 1) 
	{ 
		top.location = '/productsearch/?text='+search_text; 
	} 
	else 
	{ 
		alert('Please enter text for search'); 
	} 
} 
/********************************************************/ 
function amShowStoreHours(rand_num) 
{ 
	if (rand_num.length > 0) 
	{ 
		$.modal( 
		'<iframe src="http://certifieddigital.com/includes/popups/storehours.php?'+rand_num+'" height="320" width="600" frameborder="0" hspace="0" vspace="0" style="border:0;">', 
		{ 
			opacity:60, 
			closeHTML: "", 
			overlayCss: 
			{ 
				width:"100%", 
				overflow:"hidden", 
				backgroundColor:"#FFF" 
			}, 
			containerCss: 
			{ 
				backgroundColor:"#FFF", 
				border:"3px solid #000", 
				height:320, 
				padding:0, 
				width:600 
			}, 
			escClose: true,
			overlayClose: true 
		}); 
	} 
} 
/********************************************************/ 


