function toggle(div_id){
	obj = document.getElementById(div_id)
	temp = obj.style.display;
	if (temp == 'none'){		
		obj.style.display = 'block';
	}
	else{
		obj.style.display = 'none';
	}
	//alert(temp);
}
function showEditUserInfo(){
	//alert("here");
	var objArray = new Array('firstname2', 'firstname','lastname2', 'lastname','email2', 'email','title2', 'title','industry2','industry');
	
	for (i=0;i<objArray.length;i++){
		var obj = document.getElementById(objArray[i]);
		//alert(obj);
		if (!obj)
			continue;
			
		if (obj.style.display == 'none'){
			obj.style.display = 'block';
		}
		else
			obj.style.display = 'none';
	}
}

function downloadFile(art_id,frameId){
	oIFrm = document.getElementById(frameId);
    oIFrm.src = 'download.php?type=arts&id='+art_id;
}

function downloadNewsFile(art_id,frameId){
	oIFrm = document.getElementById(frameId);
    oIFrm.src = 'download.php?type=news&id='+art_id;
}
