
	
	function jpoll_2_1283902355(choice) {
		var xmlHttp;
	
		try {
			// Firefox, Opera 8.0+, Safari 
			xmlHttp=new XMLHttpRequest();
		}
		catch (e) {
			// Internet Explorer    
			try {
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
			
			catch (e) {
				try {
					xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");        
				}
				catch (e) {
					alert("Your browser does not support AJAX!");
					return false;
				}
			}
		}
	
		xmlHttp.onreadystatechange=function() {
			if(xmlHttp.readyState==4) {
				document.getElementById('2_1283902355_results').innerHTML = xmlHttp.responseText;
			}
		}
		xmlHttp.open("GET","http://sominty.com/inc/polls//inc.poll.php?_cmd=vote&poll_id=2&choice="+ choice +"&ran=" + Math.random(),true);
		xmlHttp.send(null);
		
	}
	
	
	document.write('<div id="2_1283902355" style="width:188px;font-size:11px;">');
document.write('<div style="margin:0px;">');
document.write('	<strong>Which movie would you rather watch?<br><br></strong>');
document.write('	<div id="2_1283902355_results">');
document.write('	<table border="0" cellpadding="0" cellspacing="0">');
document.write('<tr>');
document.write('	<td valign="middle" nowrap style="padding-right:5px;">			<input onclick="jpoll_2_1283902355(this.value)" type=radio name=vote value="7">		</td>');
document.write('		<td>Silence of the Lambs</td>');
document.write('</tr>');
document.write('<tr>');
document.write('	<td valign="middle" nowrap style="padding-right:5px;">			<input onclick="jpoll_2_1283902355(this.value)" type=radio name=vote value="9">		</td>');
document.write('		<td>The Lion King</td>');
document.write('</tr>');
document.write('<tr>');
document.write('	<td valign="middle" nowrap style="padding-right:5px;">			<input onclick="jpoll_2_1283902355(this.value)" type=radio name=vote value="10">		</td>');
document.write('		<td>Singing in the Rain</td>');
document.write('</tr>');
document.write('<tr>');
document.write('	<td valign="middle" nowrap style="padding-right:5px;">			<input onclick="jpoll_2_1283902355(this.value)" type=radio name=vote value="11">		</td>');
document.write('		<td>Theres Something About Mary</td>');
document.write('</tr>');
document.write('</table>');
document.write('	</div>');
document.write('</div>');
document.write('</div>');
