//popup start
function popWindow( url, width, height, windowName )
{
	 var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    
    win=window.open(url, windowName, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}

function ticker(link){
	if(link =="list"){hp="comment.html", popWindow("ticker/comment.html", 610, 550, "ticker_Win");}
	if(link =="list2"){hp="area/index.html", popWindow("area/index.html", 610, 550, "area_Win");}
}

//popup end
