﻿//code by gaoxianhua@snda.com
//2008-08-11

//自动扩展父框架

function ex_parent()
{
	if(window.parent)
	{
		var p = parent.document.getElementById("main_frame");
		
		if(document.body.scrollHeight>800)
			p.height = document.body.scrollHeight;
		else
			p.height = 800;
	}
}

$(document).ready(ex_parent);


//显示详细道具信息
function ShowInfo(id)
{
	if (IDX > 0)
	{
		window.open("PropertyInfo.aspx?id="+id,"_blank","height=300,width=380,status=no,toolbar=no,menubar=no,location=no");
	}
}

//购买道具
function BuyProp(id)
{
	if (id > 0)
	{
		window.open("Car.aspx?id="+id,"car_info");
	}
}
