var popup = null;
//
function close_popup() {
	try {
		popup.close();
	}
	catch( e ) {
	}
}
function open_popup( link ) {
	close_popup();
	popup = window.open( link, '', 'width=500, height=300, left=300, top=200, dependent=yes, location=no, menubar=0, resizable=no, scrollbars=no, status=no, toolbar=no');
}
//
function show_item( id ) {
	open_popup( '?action=show_item&id=' + id );
}
//  
function show_item2( id ) {
	open_popup( '?action=show_marketplace_item&id=' + id );
}  
//
function show_spell( id ) {
	open_popup( '?action=show_spell&id=' + id );
}  
//
function show_mail( id ) {
	open_popup( '?action=show_mail&id=' + id );
}
//
function show_help( page ) {
	popup = window.open( '?action=show_help&page=' + page, '', 'width=800, height=600, left=100, top=100, dependent=yes, location=no, menubar=0, resizable=yes, scrollbars=yes, status=no, toolbar=no');
}
//
function show_profile( id ) {
	close_popup();
	popup = window.open( '?action=show_profile&id=' + id, '', 'width=770, height=530, left=100, top=100, dependent=yes, location=no, menubar=0, resizable=no, scrollbars=no, status=no, toolbar=no');
}
//
function search_character() {
	close_popup();
	popup = window.open(  '?action=stats_chars&popup=1', '', 'width=400, height=50, left=100, top=100, dependent=yes, location=no, menubar=0, resizable=no, scrollbars=no, status=no, toolbar=no');
}
//
function show_bug( id ) {
	open_popup( '?action=show_bug&id=' + id );
}
//
function show_pvpstore_item( id ) {
	open_popup( '?action=show_pvpstore_item&id=' + id );	
}