function openWin(url,name,width,height){
	var url;
	var width;
	var height;
	var name;
	
	var new_win;
	
	
	width = parseInt(width);
	
	height = parseInt(height);
	
	
	win_detail = "status=1,toolbar=0,location=0,directories=0,width=" + width + ",height=" + height + ",scrollbars=1, resizable=1";
	
	nw_win= window.open('',name ,win_detail);
	nw_win.document.open();
	nw_win.location.href=url;
	nw_win.window.focus();
}

function openPhoto(title,name){
	var title;
	var name;
	var output;
	var new_win;
	
	width = 710;
	height = 635;
	
	output ="";
	output += "<html>";
	output += "<head><link rel=stylesheet type=text/css href=/en/common/subwin.css>";
	output += "<title>AISIN automotive aftermarket</title>";
	output += "<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>";
	output += "<div style=width:672px; id=body><img src=/en/common/subwinimg/aisin_logo.jpg alt=AISIN Geared up for the future width=160 height=70><img src=/en/common/subwinimg/header.jpg width=492 height=70 alt=AISIN automotive aftermarket><br>";
	output += "<div id=contents><div class=close><img src=/en/common/subwinimg/bullet.gif align=middle>&nbsp;&nbsp;<a href=javascript:window.close();>Close</a></div>";
	output += "<div align='center'><h4>" + title + "</h4><img src='/en/toollibrary/enlarge/";
	output += name;
	output += ".jpg' style='border:solid\;border-width:1px\;border-color:#eee'>";
	output += "</div><br>";
	output += "<div class=close><img src=/en/common/subwinimg/bullet.gif align=middle>&nbsp;&nbsp;<a href=javascript:window.close();>Close</a></div>";
	output += "</div><div><img src=/en/common/subwinimg/footer.jpg alt=Copyright(c) AISIN SEIKI CO., LTD.></div></div><img src=/en/common/images/spacer_fff.gif width=2 height=10 alt=><br></body></html>";
	
	win_detail = "status=1,toolbar=0,location=0,directories=0,width=" + width + ",height=" + height + ",scrollbars=1, resizable=1";
	
	nw_win= window.open('','photo',win_detail);
	nw_win.document.open();
	nw_win.document.write(output);
	nw_win.window.focus();
	nw_win.document.close();
}


function openPhoto2(title,url){
	var title;
	var url;
	var output;
	var new_win;
	
	width = 800;
	height = 650;
	
	output ="";
	output += "<html>";
	output += "<head><link rel=stylesheet type=text/css href=/en/common/subwin.css>";
	output += "<title>AISIN automotive aftermarket</title>";
	output += "<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>";
	output += "<div id=body>";
	output += "<div id=contents></div>";
	output += "<div align='center'><img src='";
	output += url;
	output += "' style='border:solid\;border-width:1px\;border-color:#eee'>";
	output += "</div><br>";
	output += "</div></div><img src=/en/common/images/spacer_fff.gif width=2 height=10 alt=><br></body></html>";
	
	win_detail = "status=1,toolbar=0,location=0,directories=0,width=" + width + ",height=" + height + ",scrollbars=1, resizable=1";
	
	nw_win= window.open('','photo',win_detail);
	nw_win.document.open();
	nw_win.document.write(output);
	nw_win.window.focus();
	nw_win.document.close();
}


function openPhoto3(title,name){
	var title;
	var name;
	var output;
	var new_win;
	
	width = 710;
	height = 635;
	
	output ="";
	output += "<html>";
	output += "<head><link rel=stylesheet type=text/css href=/en/common/subwin.css>";
	output += "<title>AISIN automotive aftermarket</title>";
	output += "<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>";
	output += "<div style=width:672px; id=body><img src=/en/common/subwinimg/aisin_logo.jpg alt=AISIN Geared up for the future width=160 height=70><img src=/en/common/subwinimg/header.jpg width=492 height=70 alt=AISIN automotive aftermarket><br>";
	output += "<div id=contents><div class=close><img src=/en/common/subwinimg/bullet.gif align=middle>&nbsp;&nbsp;<a href=javascript:window.close();>Close</a></div>";
	output += "<div align='center'><h4>" + title + "</h4><img src='";
	output += name;
	output += ".jpg' style='border:solid\;border-width:1px\;border-color:#eee'>";
	output += "</div><br>";
	output += "<div class=close><img src=/en/common/subwinimg/bullet.gif align=middle>&nbsp;&nbsp;<a href=javascript:window.close();>Close</a></div>";
	output += "</div><div><img src=/en/common/subwinimg/footer.jpg alt=Copyright(c) AISIN SEIKI CO., LTD.></div></div><img src=/en/common/images/spacer_fff.gif width=2 height=10 alt=><br></body></html>";
	
	win_detail = "status=1,toolbar=0,location=0,directories=0,width=" + width + ",height=" + height + ",scrollbars=1, resizable=1";
	
	nw_win= window.open('','photo',win_detail);
	nw_win.document.open();
	nw_win.document.write(output);
	nw_win.window.focus();
	nw_win.document.close();
}


