/********************************************************************
Descript: custom function.
Note: Must include prototype.js before include this file.
********************************************************************/
/*
* Show or hide HTML object by using id object.
* if id object is show, now will be hide. And
* if id object is hide, now will be show
*/
function showHideIdAuto(id) {
    if (id.style.display ==''){
        id.style.display = 'none';		
    }else{
        id.style.display = '';		
	}	
}
function Add_Mask(){	u=location.href;	t=document.title;		//if (document.all)		window.external.AddFavorite(u,t)//IE		//window.sidebar.addPanel( t, u, '' );//Moz	//}}
function OpenWindowPrint(link){        
	window.open(link,'Print','left=10,top=10,width=670,height=500,scrollbars=1');
}

function OpenWindowSendmail(){        	
		window.open('sendmail.php?link='+location.href ,'','left=200,top=200,width=460,height=350,scrollbars=1');
}
