function window_open(url,winName,width,height)
{
	xpos = (screen.width-width)/2;
	ypos = (screen.height-height)/2;
	options = "width="+width+",height="+height+",left="+xpos+",top="+ypos+"position:absolute";
	window.open(url,winName,options);
}

function window_open_s(url,winName,width,height)
{
	xpos = (screen.width-width)/2;
	ypos = (screen.height-height)/2;
	options = "width="+width+",height="+height+",left="+xpos+",top="+ypos+",scrollbars=yes,position:absolute";
	window.open(url,winName,options);
}

function view_smiley(num)
{
	a = new Image;
	a.src = "http://www.piggy.ws/img/smiley"+num+".gif";
	document.smiley_img.src = a.src;
}

function bookmark() {
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
		var url = "http://www.mediaminer.org";
		var title = "MediaMiner.org - Anime FanArt & FanFiction";
		window.external.AddFavorite(url, title);
	}
}

function changeFic(id)
{
	var f = document.forms['ficsel'+id].aseries;

	if (f.selectedIndex == -1) {
		return;
	}
	window.location = '/fanfic/src.php/a/' + f.options[f.selectedIndex].value;
}
