/* Code Created by Senthil For Flash Component */
 
var intervalID1;
var intervalID2;
var hgt;
var target_hgt;




function getProductPrice(product) {
	//alert(product);
	ProductListHandler.getProductPrice(product,{callback:function(productPrice){
	calling_flash_method(productPrice);
    }});
}             




function showRelatedVideo(url) {
	window.location.href = url;
}

function calling_flash_method(price) {
	//alert(price);
    thisMovie("flashid").priceId();
}

function thisMovie(movieName1) {

//alert("Enter into the this Movie method");
                if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName1]
    }
    else {
        return document[movieName1]
    }          
}






