﻿function Show(URL,Title,Width,Height)
{
	$.XYTipsWindow({
			___title:Title,
			___content:"iframe:"+URL,
			___width:Width,
			___height:Height,
			___drag:"___boxTitle",
			___showbg:true
		});
}
function tip(name,relname)
{
	Show("/help/"+name+".htm",relname+"购卡点",780,500);
}
function MessageAlert(Title,Message,Width,Height)
{
	 $.XYTipsWindow({
			___title:Title,
			___content:"text:"+Message,
			___width:Width,
			___height:Height,
			___showbg:true,
			___drag:"___boxTitle"
		});
}
function ShowID(Title,DivID)
{
    $.XYTipsWindow({
	___title:Title,
	___content:"id:"+DivID,
	___showbg:true,
	___width:450,
    ___height:300,
	___drag:"___boxTitle"
    });
}

