function popUp(URL,width,height) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width +",height=" + height +",left = 199.5,top = 196.5');");
}
// this function to add one answer input text and it used in form add new vote
function redir_stage(url) {
	window.location = url;
}
// this function to open popup share content site
function share(type,url, width,height) {
	day = new Date();
	id = day.getTime();
	facebook 	= 'http://www.facebook.com/sharer.php?u=';
	twitter 	= 'http://twitter.com/home?status=';
	if(type == 'facebook'){
		out = facebook+url;
	}
	else {
		out = twitter+url;
	}
	eval("page" + id + " = window.open(out, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width +",height=" + height +",left = 199.5,top = 196.5');");
}

function myNoteNew(msg, color, dd) {
	if (color == 'ff') {
		$('#' + dd).removeClass("bsuccess noClass").addClass("berror");
	} else {
		$('#' + dd).removeClass("berror noClass").addClass("bsuccess");
	}
	document.getElementById(dd).innerHTML = msg;
	document.getElementById(dd).style.display = 'block';
	setTimeout('document.getElementById(\'' + dd
			+ '\').style.display = \'none\'', 10000);
}
