// functions.js

// Copyright (c) 2005 Masayuki Iwai all rights reserved.

// ----

// 2005.09.05 ver.1.0.1.0









//////// Constants

var g_nCadDetailWidth = 586;

var g_nCadDetailHeight = 640;

var g_nDetailWidth = 586;

var g_nDetailHeight = 320;

var g_nTopicsWidth = 656;

var g_nTopicsHeight = 480;





function GetElement(id)

{

	return	document.all? document.all.item(id):

			document.getElementById? document.getElementById(id):

			document.layers? document.layers[id]: null;

}





function Popup(url, name, w, h, scroll, resize)

{

	scroll = ((scroll == null)? 'auto': (scroll? 'yes': 'no'));

	resize = (resize? 'yes': 'no');



	var w = window.open(url, name, "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars="+scroll+",resizable="+resize+",width="+w+",height="+h);

	w.focus();

	return w;

}





function PopupDetailCad(url)

{

	Popup(url, 'detail', g_nCadDetailWidth, g_nCadDetailHeight, true);

}





function PopupDetail(url)

{

	Popup(url, 'detail', g_nDetailWidth, g_nDetailHeight, true);

}





function PopupTopics(url)

{

	Popup(url, 'topics', g_nTopicsWidth, g_nTopicsHeight, true);

}





function GetCatalog()

{

	var temp = GetElement('link_catalog');

	if(temp)

	{

		location.href = temp.href;

	}

}




