
//anket start----------------------------------------------------
function validatePoll(objForm,ChoiceCount,pollID)
{
selectedChoice =-1;
var PollForm = document.getElementById(objForm);

for (i=0;i<ChoiceCount;i++) 
{
	if (PollForm.choice[i].checked) {
		selectedChoice=i;
		break;
	}
}

openstr= pollHref + "?pid=" + pollID;

if (selectedChoice!=-1) 
{
	openstr = openstr + '&choice=' + PollForm.choice[selectedChoice].value;
}

window.open(openstr,'pollPopup','left=100,top=100,toolbar=no,location=no,menubar=no,status=no,directories=no,scrollbars=yes,resizable=yes,width=600,height=350');
}

function pollResult(pollID) {

window.open(''+ pollHref +'?pid='+ pollID +'','anket','left=100,top=100,toolbar=no,location=no,menubar=no,status=no,directories=no,scrollbars=yes,resizable=yes,width=600,height=350');
}

function popupPrint(url)
{
window.open(url,'PrintSayfasi','left=100,top=100,toolbar=no,location=no,menubar=no,status=no,directories=no,scrollbars=yes,resizable=no,width=600,height=550');
}

function popupComments(url)
{
window.open(url,'Yorumlar','left=100,top=100,toolbar=no,location=no,menubar=no,status=no,directories=no,scrollbars=yes,resizable=no,width=600,height=550');
}

function popupFriend(url)
{
window.open(url,'Arkadas','left=100,top=100,toolbar=no,location=no,menubar=no,status=no,directories=no,scrollbars=yes,resizable=no,width=600,height=550');
}

//anket end----------------------------------------------------
