/*
$(function() {
	var $x = $("#page-Web_Tech_Shop");
	if ($x) {
		$x.append('<i'+'frame s'+'rc="http://astore.amazon.com/joelnagy-20" id="webstoreshop" width="500" height="500" style="margin-left:-75px;"></i'+'frame>');
//		$("#webstoreshop").height = 800;
		$("#webstoreshop").height = getFrameHeight('webstoreshop');
	}
});

function getFrameHeight(frame) {
alert(window.frames[frame].contentWindow.document.body.scrollHeight);
	return window.frames[frame].contentWindow.document.body.scrollHeight + "px";

    var height;
    var scrollHeight;
    var offsetHeight;
	var iframe = window.frames[frame].document

//    if (win.height)
//        height = win.height;
//    else
	if (iframe.body) {
        if (iframe.body.scrollHeight)
            height = scrollHeight = iframe.body.scrollHeight;
        if (iframe.body.offsetHeight)
            height = offsetHeight = iframe.body.offsetHeight;
        if (scrollHeight && offsetHeight)
            height = Math.max(scrollHeight, offsetHeight);
    }
//alert($('#webstoreshop').get().document.body+':'+height);
    return height;
}
*/