/**********************************************************
Author: Abraham Beshara
Date: 13/05/08
Description:
- Open Close Content for Careers

**********************************************************/	

function showHide(hideIt,showIt){
	document.getElementById(''+hideIt+'').style.display='block';
	document.getElementById(''+showIt+'').style.display='none';
}

function popUpBox(linkInfo, boxName) {
	winOptions = "alwaysRaised=yes,location=no,status=no,titlebar=no,"+
	"toolbar=no, scrollbars=no,height=560,width=620,left=0,top=0,resizable=yes";
	ordWin = window.open(linkInfo, boxName, winOptions);
}

function InspectBox(linkInfo, boxName) {
	winOptions = "alwaysRaised=yes,location=no,status=no,titlebar=no,"+
	"toolbar=no, scrollbars=yes,height=500,width=650,left=0,top=0,resizable=no";
	ordWin = window.open(linkInfo, boxName, winOptions);
}

function PictureBox(linkInfo, size) {
	size = size.replace(',', ',height=')
	linkOptions = "alwaysRaised=yes,location=no,status=no,titlebar=no,toolbar=no,scrollbars=yes,width=" + size + ",left=0,top=0,resizable=yes";
	linkURL = "/pol/Property/search.asp?" + linkInfo
	window.open(linkURL, 'pic', linkOptions);
}
