// JavaScript Document
function yaImgChange(imgNum,imgSrc) {
	document.images[imgNum].src = imgSrc;
}
function showDiv(id){
	if (document.getElementById(id).style.display=='block'){
		document.getElementById(id).style.display='none';
	} else {
		document.getElementById(id).style.display='block';
	}
}

function helpWindow(messageId){
	newWindow=window.open('/admin/registration.aspx?message='+messageId,'','width=300,height=400,location=yes,status=no,toolbars=yes,resizable=yes,scrollbars=yes');
}
function openDetails(messageId){
	newWindow=window.open('/admin/webpage_details.aspx?id='+messageId,'','width=450,height='+screen.height-200+',location=yes,status=no,toolbars=yes,resizable=yes,scrollbars=yes');
}

function confirmDelete(section){
	if (confirm('Are you sure you want to delete this '+section+'?')){
			return true;
		} else {
			return false;
		}
}
function keywordsMaster(id){ 
	newWindow=window.open('/admin/popups/master_keywords.aspx?id='+id,'','width=350,height=550,location=no,status=no,toolbars=yes,resizable=yes,scrollbars=yes');
}