<!--
function close_up(Image,imgWidth,imgHeight) {
    var border = 24;
    var img = Image;
    var features;
    var w;
    var h;
    winWidth = (imgWidth<100) ? 100 : imgWidth+border;
    winHeight = (imgHeight<100) ? 100 : imgHeight+border+30;
    if (imgWidth+border > screen.width) {
        winWidth = screen.width-10;
        w = (screen.width - winWidth)/2;
        features = "scrollbars=yes";      
    } else {
        w = (screen.width - (imgWidth+border))/2;
    }
    if (imgHeight+border > screen.height) {
        winHeight = screen.height-60;
        h = 0;
        features = "scrollbars=yes";      
    } else {
        h = (screen.height - (imgHeight+border))/2 - 20;
    }
	h=10;
	w=20;
    features = features+',toolbar=no,width='+winWidth+',height='+winHeight+',top='+h+',left='+w;
    theURL = '/v7/templates/sukipure/popup.html';
	theImage=Image;
    theimgWidth=imgWidth;
	theimgHeight=imgHeight;
    theBorder=0;
    winName='PopPhotoL';
	if (imgWidth < 640){
	    winName='PopPhoto';
	}
    popup = window.open(theURL,winName,features);
    popup.focus();  
}

//-->
