// JavaScript Document

	// <![CDATA[ 
	$(document).ready(function()
	{	

		// ---------------------------------------
		//
		// ---------------------------------------
		$('.clickswf').click(function()
		{
						
			// determine the record id number by looking at the parent of the click entity (<a>).
			// Take the attribute value of id and extract the image_id value.
			//debugger;
			//pos = this.id;

			//var id = this.id.replace('popid-','');
			var id = $(this).attr('id').replace('popid-','');
			//var classvalue = $('#popid-' + id).attr("href");
			
			//alert (classvalue);
			
			// If class is not pop'd then add a vote
			//alert(id);
			window.open("recommends.php?banner_id=" + id, '_blank');
			//window.open(this.getAttribute('href'), '_blank')
						
		});
	
	});	
