

function showimage(url,width,height)
	{
	//if (imagewindow)
	//	{
	//		imagewindow.close();
	//	}
	_width=parseInt(width)+10;
	_height=parseInt(height)+20;

	parameters="statusbar=no,locationbar=no,scrollbars=no,width="+_width+",height="+_height;	
    url="show.php?url="+url;
	imagewin=window.open(url,"imagewindow",parameters);
	imagewin.focus();
	}

function newsPop(url)
	{
	parameters="statusbar=no,locationbar=no,menubar=yes,scrollbars=yes,width=350,height=450";	
	newswin=window.open(url,"newswin",parameters);
	newswin.focus();
	}

function projectPop(url)
	{
	parameters="statusbar=no,locationbar=no,menubar=no,scrollbars=no,width=669,height=317";	
	newswin=window.open(url,"banyyan_project",parameters);
	newswin.focus();
	}

function sitemapPop(lang)
	{
	parameters="statusbar=no,locationbar=no,menubar=yes,scrollbars=yes,width=350,height=450";	
	newswin=window.open("index.php?nav=30&lang="+lang,"newswin",parameters);
	newswin.focus();
	}

	/* show text ##################################################### */

function hideImg(_id) {
	    imgID = '#img' + _id;
	    textID = '#text' + _id;
	    //alert(imgID); 
	    $(imgID).fadeOut(500, function () { $(textID).fadeIn(500); });
	}


	/* show image ################################################### */

function hideText(_id) {
	    imgID = '#img' + _id;
	    textID = '#text' + _id;
	    //alert(imgID); 
	    $(textID).fadeOut(500, function () { $(imgID).fadeIn(500); });
	}
