/* -------------------------------------------

	click event

------------------------------------------- */
$(function()
{
	var link_detail = $('.link_detail');
	
	var UA = navigator.userAgent;
	
	if( UA.indexOf('Firefox') > -1  )
	{
		// firefox
		link_detail.attr( 'target', '_blank' );
	}
	else
	{
		var height;
		
		if( 1800 < screen.availHeight )
		{
			height = 1800;
		}
		else
		{
			height = screen.availHeight - 100;
		}
		
		link_detail.click(function( e )
		{
			window.open( this.href, 'popup', 'top=0, width=940, height=' + height + ', toolbar=0, menubar=1, scrollbars=1, resizable=1' );
			
			e.preventDefault();
		});
	}
});

