/**
* openItem.js
* (C) Copyright 2009, all rights reserved by DosTigres Corp.
* Ver. 0.0.1, 22-Aug-2007
**/

/**
* 商品個別詳細画面を開くためのスクリプト
* @class openItem
* @namespace appjs
**/
if (typeof appjs == "undefined") {
    var appjs = {};
}

appjs.openItem = {
	/***************/
	/** constatns **/
	/***************/
	/**
	* Version
	*/
	version:'0.0.1',
	
	
	/****************/
	/** Attributes **/
	/****************/
	/**
	* target
	*/
	target: "_blank",
	
	/**
	* features
	*/
	features: "width=800, height=1200, resizable=yes, scrollbars=yes",
	
	/**
	* urlPrefix
	*/
	urlPrefix: "",
	
	/**
	* urlPostfix
	*/
	urlPostfix: ".html",
	
	
	/*************/
	/** Methods **/
	/*************/
	opn: function(prodId) {
		with (appjs.openItem) {
			if (urlPrefix=="") { return; }
			window.open(urlPrefix + prodId + urlPostfix, target, features);
		}
	},

	/***********/
	/** Dummy **/
	/***********/
	terminateDummy: function() {
	}
}





