$(function()
{
	$('.copyright').click(function()
	{
		mywindow = window.open($(this).attr('href'), "mywindow","location=1,status=1,scrollbars=1,width=500,height=600");
		mywindow.moveTo(150,150);
		return false;
	});
	
	$('.ny-pop-show').click(function()
	{
		mywindow = window.open($(this).attr('href'), "mywindow","location=1,status=1,scrollbars=1,width=900,height=514");
		mywindow.moveTo(150,150);
		return false;
	});
});

function setDivCenter(div, plus)
{
	$(div).css('left', ($(window).width() / 2) - ($(div).width() / 2)+plus)
		  .css('top', ($(window).height() / 2) - ($(div).height() / 2) + $(window).scrollTop()+plus)
		  .fadeIn();
}