	function f(id, type, iid)
	{
		switch (type)
		{ 
			case 1 : window.open("index.php?op=home&sub=postcard_view&id=" + id,"","height=586, width=649, menubar=1, resizable=1, scrollbars=yes"); break;
			case 2 : window.open("index.php?op=home&sub=old_postcard_view&p=" + id,"","height=586, width=649, menubar=1, resizable=1, scrollbars=yes"); break;
			case 3 : window.open("index.php?op=new_vcard&id=" + id,"","height=586, width=649, menubar=1, resizable=1, scrollbars=yes"); break;
			case 4 :
				if (iid == null) {
					window.open("index.php?op=home&sub=invite&type=2&uid=" + id,"","height=586, width=649, menubar=1, resizable=1, scrollbars=yes");
				}
				else {
					window.open("index.php?op=home&sub=invite&type=2&uid=" + id + "&iid=" + iid,"","height=586, width=649, menubar=1, resizable=1, scrollbars=yes");
				}
			break;
			}

	}
