﻿// JScript 檔

//搜尋畫面中的物件
function GetItem(item) {
	if( window.mmIsOpera ) return(document.getElementById(item));
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}

//檢視頁面
function GoView(PageUrl,FormID,ParaID,ParaValue)
{
    var objForm = GetItem(FormID);
    var objID = objForm.elements[ParaID];
    
    objID.value = ParaValue;
    objForm.method="post";
    objForm.action=PageUrl;
    objForm.submit();  
}

//另開視窗檢視原圖
function ShowFullImage(PageUrl,ImageUrl)
{
    var _url = PageUrl+"?img="+ImageUrl;
    window.open(_url,"WinImageWork","fullscreen=yes,scrollbars=yes,location=no,menubar=no,left=0,top=0");
}
