/**
 * JavaScript-Library
 *
 * @Copyright (C)2008 SystemOcean Inc.
 */

/**
 * change Product Image File
 */
function changePic( strPic, strAltTag, width, height )
{
    document.getElementById( "Prod_photo_detail" ).innerHTML = 
            '<a href="' + strPic + '" target="ap_subView" onClick="openSubWindow(\'ap_subView\', \'\', 650, 650 )" >' +
            '<img src="' + strPic + '" alt="' + strAltTag + '" width="' + width + '" height="' + height + '" >';
}

/**
 * change Product attribute property
 */
function changeAttribute( strStockStatus, strPrice, strPoint )
{
    document.getElementById( "stockstatus" ).innerHTML = strStockStatus;
    document.getElementById( "product_price" ).innerHTML = strPrice;
    try {
        document.getElementById( "product_point" ).innerHTML = strPoint;
    } catch( e ) {
    }
}

