﻿function mpOpen(conID)
{
	window.open("http://www.smtown.com/Player/mediaPlay.aspx?id=" + conID + "","prgMP","width=512, height=418");
	return ;
}

function albumInfo(url) 
{
        var w = 450;
        var h = 500;
        var PopWin = window.open(url, '_blank', "toolbar=0, channelmode=0, location=0, directories=0, resizable=0, menubar=0, scrollbars=0, status=no"
																						+ ", width=" + w + ", height=" + h
																						+ ", top=" + (screen.height - h) / 2 + ", left=" + (screen.width - w) / 2);
        if (PopWin == null) {
            alert('팝업이 차단되어 있습니다.\n\n화면 상단의 차단메세지를 클릭하여 팝업을 허용해주세요.');
            return;
        }
        PopWin.focus();
}