/*----------------------------------------------------------------------------
 * Source	: common.js
 * ---------------------------------------------------------------------------
 * Date		:	2011-07-07
 * -------------------------------------------------------------------------*/

$(document).ready(function()
{
	/* Popup */
	$('a.open-popup').each(function()
	{
		var target	= $(this).attr('target');

		if (target)
		{
			var option	= target.split('_');

			if (option.length==4)
			{
				$(this).click(function()
				{
					var option_str	= new Array();
						option_str.push('width=' + option[1]);
						option_str.push('height=' + option[2]);
						option_str.push('scrollbars=' + (option[3]==0 ? 'no' : 'yes'));

					var win	= window.open($(this).attr('href'), option[0], option_str.join(', '));
						win.focus();
					
					return false;
				});
			}
		}
	});

	$('div#fnb').ImageRollOver();

	$('p#print').css('cursor', 'pointer').click(function()
	{
		window.print();
	});

	// 관련사이트
	$('span#rselect-site').children('a').click(function()
	{
		return false;
	})
	.hover
	(
		function() { $('ul#site-list').show(); },
		function() { $('ul#site-list').hide(); }
	);

	$('ul#site-list').hover
	(
		function() { $(this).show(); },
		function() { $(this).hide(); }
	);

});


/*
// footer 관련사이트
var footer_var=1;


function openfooter() {

	
	if(footer_var=="1"){
		document.getElementById("site-list").style.display="block";
		document.getElementById('rselect-site').src="/images/layout/btn_site.gif"
		
		footer_var=0;
	}else{
		
		
		footer_var=1;
		closefooter();
	}
	
}

function closefooter() {
		document.getElementById("site-list").style.display="none";
		document.getElementById('rselect-site').src="/images/layout/btn_site_off.gif"
		
		
		
}
*/

function autoLogin(contentId, giwan_no)
{
    window.open('http://uni.webminwon.com/reportx40_1/reportx40_pre_frame.asp?contentId=' + contentId + '&giwan_no=' + giwan_no,'reportx40','width=850,height=750, scrollbars=yes, top='+(screen.height-750)/3+',left='+(screen.width-850)/2);
}

