var select, selector;
function show_selector () {
	selector = document.createElement('form');
	selector.id = 'selector';
	try {
		selector.style.top = (window.innerHeight / 2) - (92 / 2) + 'px';
		selector.style.left = (window.innerWidth / 2) - (332 / 2) + 'px';
	} catch (e) {
		selector.style.top = (document.documentElement.clientHeight / 2) - (92 / 2) + 'px';
		selector.style.left = (document.documentElement.clientWidth / 2) - (332 / 2) + 'px';
	}
	document.body.appendChild(selector);
	temp = document.createElement('iframe');
	temp.src = 'form.php';
	temp.scrolling = 'no';
	temp.frameBorder = 0;
	temp.style.width = '330px';
	temp.style.height = '80px';
	temp.style.margin = '6px 0px 0px 6px';
	selector.appendChild(temp);
}
function $ (id) {
	return document.getElementById(id);
}
window.onload = load_handler;