// JavaScript Document

/********** addBookmark **********/
function addBookmark(title,url) {
	if (window.sidebar) {
		window.sidebar.addPanel(title, url,"");
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}


/********** popupPage **********/
function popupPage(title,url,width,height) {
	window.open( url, title, 'width=' + width + ', height=' + height + ', menubar=no, toolbar=no, scrollbars=no' );
}



/**************/
/*** jquery ***/
/**************/
 
/********** open_form **********/
jQuery(function($){
	$("#open_form").click(function(){
		$("#form_block").slideToggle(0);
	});
});






