/**
 * @brief exploration 출력용
 **/
function displayWeb3d_e(src, width, height) {

	html = '<object	id="exploration" type="application/x-oleobject" classid="CLSID:1110E0D7-D33E-438C-88A4-1FA6A88F9A6B" codebase="http://www.righthemisphere.com/products/deepview/downloads/DeepView.cab"';
	html += 'width="'+width+'"';
	html += 'height="'+height+'">';
	html += '<param name="FileName" value="'+src+'" />';
	html += '<param name="BackStyle" value="0" />';
	html += '<param name="FillColor" value="16777215" />';
	html += '</object>';

    document.writeln(html);
}

/**
 * @brief Deepexploration 출력용
 **/
function displayWeb3d_d(src, width, height) {
	html = '<object classid="clsid:356E71A0-B0F1-4AF7-877C-A4E9B4D6BED6" id="EspViewer" codebase="EspViewer.cab"';
	html += 'width="'+width+'"';
	html += 'height="'+height+'">';
	html += '<param name="FileName" value="'+src+'" />';
	html += '<param name="WinMode" value="0">';
	html += '<param name="FileVersion" value="1">';
	html += '<param name="WinFloatX" value="200">';
	html += '<param name="WinFloatY" value="200">';
	html += '<param name="WinFloatW" value="'+width+'">';
	html += '<param name="WinFloatH" value="'+height+'">';
	html += '</object>';

    document.writeln(html);
}