/**
 * POP UP Window Open
 *
 */

//function popup( id )
//{
//	window.open( "/popupwindow/popup.html" , id , "width=660 , height=420" ).focus();
//}
function popup( line , grade , num )
{
	id = "popup";
	var path = "/popupwindow/popup.html?line=" + line + "&grade=" + grade + "&num=" + num;
	window.open( path , id , "width=660 , height=420" ).focus();
}

/**
 * 通常サイズポップアップウィンドウ。
*/
function popup1( path )
{
	window.open( "/popupwindow/popup1.html" , path , "width=660 , height=420" ).focus();
}


/**
 * ギャラリーポップアップ。
 *
 */
function gallary( line , grade , num , max )
{
	id = "gallary";

	var path = "/popupwindow/popup2.html?line=" + line + "&grade=" + grade + "&num=" + num + "&max=" + max;
	window.open( path , id , "width=600 , height=480").focus();
}


/**
 * モデル三面図ポップアップ。
 */
function popup3( line , grade )
{
	var path = "/popupwindow/popup3.html?line=" + line + "&grade=" + grade;
	window.open( path , 'size' , "width=600 , height=305 , scrollbars=yes").focus();
}





/**
 * Tiguan Flash内リンク
 */
function ssite(){
	window.open("http://tiguan.volkswagen.co.jp/","tiguan");
}
