function ShowIssueForm()
{
	$('#report_btn').qtip(
	{
		content: {
			text: '<iframe frameborder="0" scrolling="no" width="285" height="300" src="../main/site_issue.php"></iframe>',
			title: 'Report Site Issue'
		},
		show: {
			when: 'click',
			solo: true
		},
		hide: 'unfocus',
		style: {
			name: 'issues',
			width: 300,
			height: 300
		},
		position: {
			corner: {
				target: 'bottomRight',
				tooltip: 'topLeft'
			},
			adjust: {
				y: 30,
				x: 100,
				screen: true
			}
		}
	});
	$('#report_btn').qtip('show');
}

