подскажите java скрипт всплывающего окошка нужно так чтоб оно было вроди обычной div только всплывающее!!!
http://ru.wikipedia.org/wiki/Java http://ru.wikipedia.org/wiki/Javascript http://ruseller.com/lessons.php?rub=32&id=178 По последней ссылке как раз то окошко всплывает которое ты хочешь, верно?
PHP: <script language="JavaScript"> //title - заголовок //width - ширина //height - высота //content - контент function open_window(title, width, height, content) { ScrWindow=window.open("","","toolbar=no,location=no,left=0,top=0,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width="+width+",height="+height+""); if (ScrWindow != null && ScrWindow.opener == null) ScrWindow.opener=window; ScrWindow.document.open(); ScrWindow.document.writeln ("<html><head><title>"+title+"</title></head><body>"+content+"</body></html>"); ScrWindow.document.close(); } </script> or PHP: <html> <head></head> <body> <a href="#" onClick="return OpenWin()"><img src="http://ссылка на маленькую картинку" /></a> <script> var newWindow; function OpenWin() { window.status = 'мое окно'; strfeatures = "top=100,left=50,width=300,height=270,toolbar=no"; window.open("http://ссылка на большую картинку","bigger",strfeatures); } function CloseWin() { if(newWindow) { newWindow.close(); newWindow = null; window.status = ""; } } </script> </body> </html>