
var ROLoginVotazione = null;
var ROEliminaVotiVotazione = null;

function OpenPopUpLoginVotazione() {
	if(ROLoginVotazione == null) {
		ROLoginVotazione = window.open('LoginPerVotare.aspx','ROLoginVotazione','width=334,height=264');
	} else if(ROLoginVotazione.closed) {
		ROLoginVotazione = window.open('LoginPerVotare.aspx','ROLoginVotazione','width=334,height=264');
	} 
	if(ROLoginVotazione != null) {
		if (window.focus) {ROLoginVotazione.focus()}
	}

	//window.open('LoginPerVotare.aspx','ROLoginVotazione','width=334,height=264');
}
function OpenPopUpEliminaVotiVotazione(guidVotazione) {
	if(ROEliminaVotiVotazione == null) {
		ROEliminaVotiVotazione = window.open('PopUp/ConfermaEliminazioneVoti.aspx?GUIDV=' + guidVotazione,'ROEliminaVotiVotazione','width=320,height=220');
	} else if(ROEliminaVotiVotazione.closed) {
		ROEliminaVotiVotazione = window.open('PopUp/ConfermaEliminazioneVoti.aspx?GUIDV=' + guidVotazione,'ROEliminaVotiVotazione','width=320,height=220');
	} 
	if(ROEliminaVotiVotazione != null) {
		if (window.focus) {ROEliminaVotiVotazione.focus()}
	}
	//window.open('PopUp/ConfermaEliminazioneVoti.aspx?GUIDV=' + guidVotazione,'ROEliminaVotiVotazione','width=320,height=220');
}