function PopupPic(sPicURL) {
	window.open( "popup.htm?"+sPicURL, "",
	"resizable=1,HEIGHT=500,WIDTH=650");
}

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=750,height=650,left = 240,top = 212');");
}
   
function toggleDiv(divid){
	var div = document.getElementById(divid);
	div.style.display = div.style.display == 'block' ? 'none' : 'block';
} 

function confirmSubmit(message) {
	var alertResult = confirm(message);
	if (alertResult) return true;
	else return false;
}

function textCounter(field, remDiv, maxlimit) {
	if (field.value.length > maxlimit)
		field.value =field.value.substring(0, maxlimit);
	else document.getElementById(remDiv).innerHTML = ' - ' + (maxlimit - field.value.length) + ' characters remaining.';
} 

function confirmSubmit(message) {
	var alertResult = confirm(message);
	if (alertResult) return true;
	else return false;
}
