function showBlock(id){
	var tag = document.getElementById('messageid'+id) 
	tag.style.display = (tag.style.display == "block" ? "none" : "block");
//	var func = eval('document.all.func'+id)
//	func.innerHTML = (func.innerHTML == '[-]' ? '[+]' : '[-]');
}
function validateMe()
{
	var submitform
	submitform=true
	try{if (document.appForm.terms.checked==0){
		alert("Please check our Terms and Conditions")
		return false;
	}}catch(e){}
	
    for(i=0; i<document.appForm.elements.length; i++)
	{
		var chkField = document.appForm.elements[i].value
	
		if ( chkField.length ==0 ) {
		//document.appForm.elements[i].name + " and it’s value is: " +  + ".");
			try {
			var elemlabel = document.getElementById(document.appForm.elements[i].name+"_chk");
			elemlabel.innerHTML ="required"
			submitform=false
			document.getElementById("infoneeded").innerHTML = "check for required fields";
			} catch(e){}
		} else {
			try {
			var elemlabel = document.getElementById(document.appForm.elements[i].name+"_chk");
			elemlabel.innerHTML =""
			} catch(e){}
		}
	}
	return submitform;
}
function openw(url, width, height){
	var w = width;
	var h = height;
	var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;

    winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',status=yes,scrollbars=yes,resizable=yes'
	popupwin=window.open(url,"",winprops)
}
function deleteImage(imgid,view){
	var agree=confirm("Are you sure you wish to delete this image from your profile?");
	if (agree)
		document.location="manageaccount.asp?process=4&imgid="+imgid+"&view="+view
	else
		return false ;
}
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Naked Silhouette | Come Play With Us!!!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
// Drop Down Menus

