function mouseIn(oElem)
{
      oElem.style.cursor = 'pointer';
      oElem.style.color='#333333';
}

function mouseOut(oElem)
{
      oElem.style.cursor = 'default';
      oElem.style.color='#FFFFFF';
}

function listingOver(oElem)
{
	oElem.style.cursor='pointer';
	oElem.style.background='#EFEFEF';
	oElem.style.border='dashed 2px #CC0000';
}

function listingOut(oElem)
{
	oElem.style.cursor='default';
	oElem.style.background='#FFFFFF';
	oElem.style.border='solid 2px #CCCCCC';

}

function go(loc)
{
	window.location = "/index.php";
}

function doAddPhotoPopup(url, popW, popH) {

	var w = 1024, h = 768;
	
	w = screen.width;
	h = screen.height;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open(url, "photoUpload","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+popW+",height="+popH+",top="+topPos+",left="+leftPos);

}

function openGalleryViewer(pid, filename) {
	var w = 1024, h = 768;
	var popW = 700;
	var popH = 600;
	
	w = screen.width;
	h = screen.height;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open("/viewGallery.php?pid="+pid+"&filename="+filename, "galleryViewer","toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+popW+",height="+popH+",top="+topPos+",left="+leftPos);

}
function openContactForm(pid) {
	var w = 1024, h = 768;
	var popW = 400;
	var popH = 300;
	
	w = screen.width;
	h = screen.height;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open("/contactAgent.php?pid="+pid, "contactForm","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+popW+",height="+popH+",top="+topPos+",left="+leftPos);

}
function printListing(pid) {
	var w = 1024, h = 768;
	var popW = 800;
	var popH = 600;
	
	w = screen.width;
	h = screen.height;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open("/printProperty.php?pid="+pid, "printProperty","toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width="+popW+",height="+popH+",top="+topPos+",left="+leftPos);

}

function openRegistrationForm() {
	var w = 1024, h = 768;
	var popW = 400;
	var popH = 558;
	
	w = screen.width;
	h = screen.height;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open("/agentRegistration.php", "regForm","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+popW+",height="+popH+",top="+topPos+",left="+leftPos);

}

function openUserAdmin() {
	var w = 1024, h = 768;
	var popW = 600;
	var popH = 600;
	
	w = screen.width;
	h = screen.height;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open("/userAdmin.php", "regForm","toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+popW+",height="+popH+",top="+topPos+",left="+leftPos);

}