function fotopus_openBrWindow(theURL) { //v2.0
	window.open(theURL,'gallery','status=yes,resizable=yes,width=850,height=730');
}

function set_Gallery(type, mnum){

    if ( type.length > 0 && mnum.length == 19 ){
		var fotoDomain = 'http://fotopus.com';
        var fotoUrl  = '';
        var imageUrl = '';
//        var strAlt   = '';

        switch(type) {
          case 'watch': // Clock Type
            fotoUrl  = fotoDomain + '/index.html/module/MyFotoPus/action/MyFotoPusDetailGalleryMemory/type/launch/from/blogparts/mem_cd/' + mnum;
            imageUrl = fotoDomain + '/images/design_img/common/banner_clock.jpg';
            break;
          case 'slide': // Slide Type
            fotoUrl  = fotoDomain + '/index.html/module/MyFotoPus/action/MyFotoPusDetailGallery/type/launch/from/blogparts/page/1/fl_cd/1/mem_cd/' + mnum;
            imageUrl = fotoDomain + '/images/design_img/common/banner_slide.jpg';
            break;
          case 'card': // Card Type
            fotoUrl  = fotoDomain + '/index.html/module/MyFotoPus/action/MyFotoPusDetailGallery/type/launch/from/blogparts/page/1/fl_cd/2/mem_cd/' + mnum;
            imageUrl = fotoDomain + '/images/design_img/common/banner_card.jpg';
            break;
          default:
        }
        if ( fotoUrl.length > 0 ){
            document.write('<a href="'+ fotoUrl +'" target="gallery" onclick="fotopus_openBrWindow('+"'"+ fotoUrl +"'"+')"><img src="'+ imageUrl +'" alt="Gallery" width="160" height="70" border="0" /></a>');
        }

    }
}
