/*ポップアップの設定*/

function smartOpenWin(site){
    var browser = navigator.appName;
    width = 960;
    height = 600;
    swidth = ((screen.width/2)-(width/2));
    sheight = ((screen.height/2)-(height/2));
    macwidth = width-16;
    macheight = height-16;
    safariheight = height+1;
    if ((browser == "Microsoft Internet Explorer") && (navigator.appVersion.lastIndexOf('Mac') != -1)){ 
    	window.open(site,'photoImages','width='+ macwidth +',height='+ macheight +',top='+ sheight +',left='+ swidth +',resizeable=no,scrollbars=no');
    }
    if (navigator.userAgent.indexOf('Safari') != -1) {
    	window.open(site,'photoImages','width='+ width +',height='+ safariheight +',top='+ sheight +',left='+ swidth +',resizeable=no,scrollbars=no');
    }
    else
    {
    	window.open(site,'photoImages','width='+ width +',height='+ height +',screenY='+ sheight +',screenX='+ swidth +',top=' + sheight + ',left=' + swidth + ',resizeable=no,scrollbars=no');
    }
}


function flashWindow(){
		smartOpenWin('sequenz.html');
}

