function Popup(strUrl, width, height, scrollbar)
{
	window.open(strUrl,'','width=' + width + ',height=' + height + ',resizable=no,scrollbars=' + scrollbar + ',toolbar=no,status=no,menubar=no,top=200,left=200');
	void(0);
}

function PopupCard()
{
	Popup('card.aspx', 360, 188, 'no');
}

function PrintTipp(uid)
{
    Popup('tippprint.aspx?uid=' + uid, 600, 600, 'no')
}

function Print(id)
{
    Popup('print.aspx?advertid=' + id, 600, 600, 'yes');
}

function SendMail(localpart, domainpart)
{
    location.href = "mailto:" + localpart + "@" + domainpart;
}

function Get(obj)
{
    return document.getElementById(obj);
}

function SelectRegion(stateId, stateName, districtId, districtName) 
{
	window.opener.SelectRegion(stateId, stateName, districtId, districtName);
}