/**
 * PanelConst javascript
 *
 * @author me-you
 */


/* IE 高速化 */
/*@cc_on
	var $document = document;
	eval('var document = $document');
@*/


/* ==================================================================
	パネル 定数
=================================================================== */

/* コンストラクタ */
function classConst() {

	this.$display_limit			 = 3;
	this.$display_element_width	 = 240;
	this.$reduction_path		 = '../common/image/panel/reduction/';
	this.$origin_path			 = '../common/image/panel/origin/';
	this.$coll_image_list;
	this.$coll_comment_list;
	this.$coll_titile_list;
	this.$coll_image_type_list;
}

classConst.prototype.imageList = function() {

	if ( this.$coll_image_list !== undefined ){

		return this.$coll_image_list;
	}

	var $image_list_array = {
							'device'	 : {
											'1'		 : 'device_01'
											,'2'	 : 'device_02'
											,'3'	 : 'device_03'
											}
							,'material'	 : {
											'1'		 : 'material_04'
											,'2'	 : 'material_05'
											,'3'	 : 'material_06'
											,'4'	 : 'material_07'
											}
							}
	var $list	 = $image_list_array[classMain.$now_page_name];
	var $count	 = 0;

	for ( var $inc in $list ) {

		$count++;
	}
	$list.length			 = $count;
	this.$coll_image_list	 = $list;

	return $list;
}

classConst.prototype.commentList = function() {

	if ( this.$coll_comment_list !== undefined ){

		return this.$coll_comment_list;
	}

	var $comment_list_array = {
							'device'	 : {
											'1'		 : 'Next-generation photoresist coating system based on the Floating Coat System. Faster processing throughput compared to conventional spinless coaters, capable of handling larger substrates.'
											,'2'	 : "Our impressive installed base achieves consistent processing performance. TOK's time-proven spinless coater can handle a wide range of substrate sizes."
											,'3'	 : 'Our line-up of cleaning systems, developers, and baking equipment. Integrate with our spinless coater for complete photolithography solutions.'
											}
							,'material'	 : {
											'1'		 : 'Permanent films for coating. Superior insulation properties, suitable for large substrates. Line-up includes photosensitive resin type material and non-photosensitive SiO2 (transparent) type material.'
											,'2'	 : 'High-resolution photoresists suitable for all kinds of substrates. Usable for electrodes forming of LCDs with etching, touch panels, etc. High adhesion and good stripping performance.'
											,'3'	 : 'Black resists with lyophobic properties. Does not require plasma treatment. High OD value, high sensitivity, high definition material.'
											,'4'	 : 'Pigment dispersed black resists.High OD value material with wide process window. Good adhesion.'
											}
							}
	var $list				 = $comment_list_array[classMain.$now_page_name];
	this.$coll_comment_list	 = $list;

	return $list;
}

classConst.prototype.titileList = function() {

	if ( this.$coll_titile_list !== undefined ){

		return this.$coll_titile_list;
	}

	var $title_list_array = {
							'device'	 : {
											'1'		 : '<strong>G8,10 Coater for FPD</strong>'
											,'2'	 : '<strong>Spinless coater lineup<br /><span>(Precision coaters for square substrates)</span></strong>'
											,'3'	 : '<strong>TCS &amp; TD</strong>'
											}
							,'material'	 : {
											'1'		 : '<strong>Permanent film materials</strong> '
											,'2'	 : '<strong>High-resolution photoresists for etching</strong>'
											,'3'	 : '<strong>Lyophobic black resists</strong>'
											,'4'	 : '<strong>Pigment dispersed black resists</strong>'
											}
							}
	var $list				 = $title_list_array[classMain.$now_page_name];
	this.$coll_titile_list	 = $list;

	return $list;
}

classConst.prototype.imageTypetList = function() {

	if ( this.$coll_image_type_list !== undefined ){

		return this.$coll_image_type_list;
	}

	var $image_type_list_array = {
							'device'	 : {
											'1'		 : 'height'
											,'2'	 : 'width'
											,'3'	 : 'width'
											}
							,'material'	 : {
											'1'		 : 'height'
											,'2'	 : 'height'
											,'3'	 : 'height'
											,'4'	 : 'height'
											}
							}
	var $list					 = $image_type_list_array[classMain.$now_page_name];
	this.$coll_image_type_list	 = $list;

	return $list;
}

classConst.prototype.collTitle = function() {

	if ( this.$coll_title !== undefined ){

		return this.$coll_title;
	}

	var $coll_title_array = {
								'device'	 : 'Panel presentations for FPD manufacturing equipment｜Web exhibition｜Tokyo Ohka Kogyo'
								,'material'	 : 'Panel presentations for FPD electronic material｜Web exhibition｜Tokyo Ohka Kogyo'
							}

	var $title				 = $coll_title_array[classMain.$now_page_name];

	return $title;
}
