
// Rameses
function TriggerPopUp(URL,Name){
	try{
		window.open(URL, Name, 'width=500,height=400,top=150,left=150,status=no,resizable=yes,scrollbars=yes,location=no,statusbar=no,toolbar=no,menubar=no,directories=no,dependant=yes');
	}catch(e){
	}
}


function ReviewPopUp(URL,Name){
	try{
		window.open(URL, Name, 'width=500,height=400,top=150,left=150,status=no,resizable=yes,scrollbars=yes,location=no,statusbar=no,toolbar=no,menubar=no,directories=no,dependant=yes');
	}catch(e){
	}
}


function CustomPopUp(URL,Name,Width,Height,ScrollBarsYesNo){
	try{
		window.open(URL, Name, 'width='+Width+',height='+Height+',top=50,left=50,status=no,resizable=yes,scrollbars='+ScrollBarsYesNo+',location=no,statusbar=no,toolbar=no,menubar=no,directories=no,dependant=yes');
	}catch(e){
	}
}


function PortraitGraphicPopUp(URL,Name){
	try{
		window.open(URL, Name, 'width=510,height=670,top=50,left=50,status=no,resizable=yes,scrollbars=no,location=no,statusbar=no,toolbar=no,menubar=no,directories=no,dependant=yes');
	}catch(e){
	}
}


function LandscapeGraphicPopUp(URL,Name){
	try{
		window.open(URL, Name, 'width=670,height=510,top=50,left=50,status=no,resizable=yes,scrollbars=no,location=no,statusbar=no,toolbar=no,menubar=no,directories=no,dependant=yes');
	}catch(e){
	}
}


function ReleaseGraphicPopUp(URL,Name){
	try{
		window.open(URL, Name, 'width=280,height=280,top=50,left=50,status=no,resizable=yes,scrollbars=no,location=no,statusbar=no,toolbar=no,menubar=no,directories=no,dependant=yes');
	}catch(e){
	}
}

/*
function ReleaseGraphicPopUp(URL,Name){
	try{
		window.open(URL, Name, 'width=280,height=280,top=50,left=50,status=no,resizable=yes,scrollbars=no,location=no,statusbar=no,toolbar=no,menubar=no,directories=no,dependant=yes');
	}catch(e){
	}
}
*/


function ShowTopic(TopicID,show){
	var myElem=document.getElementById(TopicID);
	if(show){
		myElem.style.display='block';
		try{
			myElem.style.display='table-row';
		}catch(e){
		}
	}else{
		myElem.style.display='none';
	}
}


function FlipVisibilityOfTopic(TopicID){
	var myElem=document.getElementById(TopicID);
	
	if(myElem.style.display=='block' || myElem.style.display=='table-row'){
		myElem.style.display='none';
	}else{
		myElem.style.display='block';
		try{
			myElem.style.display='table-row';
		}catch(e){
		}
	}
}
