function showEmail(id) {
	
	putIn('winTit400','Email this Ad')
	showWindow('win400');	
	goAJAX('winCont400','engines/ads/sendTo.php','id='+id, 'centerDivWindow(\'win400\');');
	return false;
	
}

function emailAds() {
	id = GetId('id').value;

	
	to = GetId('to').value;
	email = GetId('email').value;
	name = GetId('name').value;
	comment = GetId('comment').value;
	goAJAX('winCont400', 'engines/ads/sendTo.php', 'id='+id+'&to='+to+'&email='+email+'&name='+name+'&comment='+comment);
}

function printAd(id) {

	div = GetId('printAds');
	
	div.innerHTML = '<img src="imgs/ads/ads'+id+'widea.jpg">';
	
	var ventimp = window.open(' ', 'popimpr');
	ventimp.document.write( div.innerHTML );
	ventimp.document.close();
	ventimp.print( );
	ventimp.close();
	
	div.innerHTML = '';
	
	
	
	
	
	
	
	return false;

}