Screen Resolution Detector
This is a cool trick which is best used to make sure that the layout of your screen is kept consistant and clean - by making sure your visiter has the right resolution. An ecample of this is if your page has a title image 600 pixels wide, and the viewers screen resolution is 640 by 40, there will be a horizontal scroll bar on the page (a big no-no). Using this script will allow you to alert the visiter of their resolution, and if it is wrong, alert them to change it. Here is an example script of a resolution detector for less then 1280 by 1024.
Here is the script:
<script language="Javascript1.1">
function detect(){
if(screen.width<1280||screen.height<1024){
alert("This web page is best viewed with a screen resolution of 1280 by 1024 or higher. Your current resolution is "+screen.width+" by "+screen.height+". If possible please change your resolution.")
}
else{
alert("Whoa, you have a high resolution. Nice Job!")
}
}
</script>
Thats all there is too it. Add this script to your <head> tag. You can change everything in red, to customize it for your page. To load this at start up, add 'onLoad="detect()"' to your <body> tag. If you want to add it to a link or button, add 'onCLick="detect()"'. Good Luck!
Setting a cookie
This code will alert the user every time they visit. By setting a cookie, however, you can make it alert only once, once a week, etc. Therefore I decided to write some code which did this. Thanks to Khalid for the suggestion.
<script language="Javascript1.1">
function detect(){
if(screen.width<1280||screen.height<1024){
alert("This web page is best viewed with a screen resolution of
1280 by 1024 or higher. Your current resolution is "+screen.width+"
by "+screen.height+". If possible please change your resolution.")
}
else{
alert("Whoa, you have a high resolution. Nice Job!")
}
}
//this part will call up detect if this is the first visit.
//This script and many more are available free online at
//The JavaScript Source!! http://javascript.internet.com
var expDays = 1;
// number of days the cookie should last
function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() - 1);
var cval = GetCookie (name);
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function amt(){
var count = GetCookie('count')
if(count == null) {
SetCookie('count','1')
return 1
}
else {
var newcount = parseInt(count) + 1;
DeleteCookie('count')
SetCookie('count',newcount,exp)
return count
}
}
function getCookieVal(offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function checkCount() {
var count = GetCookie('count');
if (count == null) {
count=1;
SetCookie('count', count, exp);
detect();
}
else {
count++;
SetCookie('count', count, exp);
}
}
</script>
Then instead of calling detect(), call checkCount().
Forward to resolution specific page
Instead of forcing the viewer to change their resolution, it might be more user friendly to forward them to a different version of your site that is designed for their lower resolution. Thanks to awilson for this suggestion. To do this simply replace the following code:
Replace:
function detect(){ if(screen.width<1280||screen.height<1024){ alert("This web page is best viewed with a screen resolution of 1280 by 1024 or higher. Your current resolution is "+screen.width+" by "+screen.height+". If possible please change your resolution.") } else{ alert("Whoa, you have a high resolution. Nice Job!") } }With:
function detect(){ if(screen.width<1280||screen.height<1024){ location.href('highres.html'); }else{ location.href('lowres.html'); } }
Load it
Make sure that you add this code to your page:
Replace:
<body>With:
<body onLoad="detect()">
Current Comments
79 comments so far (post your own)excellent script, really useful for me as my site is designed for use with 1024 x 768 resolution screens but 40% of my visitors have a resolution smaller.
Would it be possible to employ the script in such a way that a user is only informed of their screen resolution once-per-session by employing a cookie feature or similar?
Posted by Khalid (http://www.thenokiazone.com)on Wednesday, 04.28.04 @ 02:16pm | #37
Thanks for the suggestion. I added it to the tutorial. Have a great day.
Posted by Brian Zimmer (http://www.zimmertech.com)on Thursday, 04.29.04 @ 04:05am | #38
i really want the site to automatically change resolution to the resolution of the viewer. if possible it would be a great help. cheers.
Posted by awilson (www.senseof16.tk)on Thursday, 05.6.04 @ 06:31pm | #43
Thanks for another really great suggestion! I added it to the tutorial.
Posted by Brian Zimmer (http://www.zimmertech.com/)on Friday, 05.7.04 @ 12:58am | #44
thanks alot for the previous question..it didn't really help, but thanks! i've seen loads of those explenations splattered across the internet and what I wanted was a page which automatically centered depending on the viewers screen resolution...ie if you view the site at 800x600 it is centered and if you view it at 1024x768 it is the still centered. I have tryed this:
<center>
<table>
<tr>
<td>
MY PICS ETC
</td>
</tr>
</table>
</center>
And it doesn't work! I think you know how to do what I am asking becuse I think your site is centered on any resolution...I hope. Cheers.
check out my site on a resolution higher than 800x600 and you'll get the idea. www.senseof16.tk
Posted by awilson on Friday, 05.7.04 @ 04:22pm | #47
Centering the page based on resolution is a bad idea. If their browser window does not fit the whole screen, it will not be centered. I do not recommend doing this.
Instead, center the page using HTML. There are a few methods. The <center> tag should work. If your layout is based on a table, the <table align="center"> tag should work. I look at your site, and my guess is that it is a problem with the frames.
I would recommend ditching the frames. They are hard to work with, search engines hate them, etc. Also, the old advantages of frames to not hold true any more. You can use PHP and SSI to include the same menu on every page, and the browser caches the images on the menu, so the time saved by changing the page in minimal. Just my opinion, but I would recommend getting away from frames and that might solve your problem.
Posted by Brian Zimmer (http://www.zimmertech.com/)on Saturday, 05.8.04 @ 04:21am | #48
Hi Brian, my site doesn't have frames...I know that frames suck... shall I just send you the script to my home page??
Posted by awilson on Monday, 05.10.04 @ 08:52am | #49
I need to know how to change screen resolution: 800 x 600 to 1024 x 768 by javascript. onload or onclick command
Posted by Bipin (http://www.dunungindustries.com)on Saturday, 06.26.04 @ 04:13am | #91
You cannot change the users resolution if that is what you are asking. You can only ask them to change it, and this is what this script does. You can also send them to a different page depending on their resolution.
Posted by Brian Zimmer (http://www.zimmertech.com)on Saturday, 06.26.04 @ 02:46pm | #92
hi, i was trying to get your last script to work (the auto detect and forward method) but i can't seem to get it right. i did this just like it's shown, but when i open the page i get nothing. all i wanted it to do was autodetect, then send the user to index1, index2, or index3.html. any suggestions?
Posted by Josh on Wednesday, 06.30.04 @ 02:57pm | #96
Sorry, there were a few mistakes in the code. I thought I tested it, but I guess not. Try it again with the new code. The function detect should be:
function detect(){
if(screen.width<1280||screen.height<1024){
location.href('highres.html');
}else{
location.href('lowres.html');
}
}
Posted by Brian Zimmer (http://www.zimmertech.com/)on Wednesday, 06.30.04 @ 09:17pm | #97
I have been trying to add the screen resolution detection code and i cant get it to work. I copied it exactly the way it is on this site but i think that something is going wrong.
thanks
Bud
Posted by Bud on Thursday, 08.12.04 @ 06:00pm | #132
Well,, I just went to the source of this page and took the code from there and now it works fine. So i dont know whats up with the code you have for an example.
thanks
Bud
Posted by Bud on Thursday, 08.12.04 @ 06:03pm | #133
The problem with the script is that the highres & lowres are mixed around.
My question is, how can I use this inside a frame? I want the contents of one frame to be different if the resolution is below 1024x768. I know you don't like frames, but they are necessary due to some branding on our site.
Posted by Chad on Wednesday, 09.1.04 @ 11:19pm | #152
Hello.
I just stumbled upon your code here and have an interesting application for it ath I'm stuck on.
I'm running a forum. The header of the page Iw ould like to be a variety of images based upon resolution. I will create on for 640 width, 800, 1024, 1280, and 1600.
I would like to know if I could code into the table cell where the image loads to check the browser resolution and load the appropriate image.
Can this be done?
Thanks.
D.
Posted by Netbug (http://llyorian.netbug.net)on Saturday, 10.16.04 @ 03:47pm | #197
I want a javascript which will detect monitor resolution. if resolution is 800x600 automatically it should change resolution to 1024x768.
Pls can You send it to my Mail.
Posted by Mahesh on Monday, 01.17.05 @ 12:05pm | #268
I have designed a site which can be best viewed in 800x600 resolution. So the concept of redirecting a visitor to different pages based on resolution is not useful for me as my entire site is ready. So pl. suggest a script which will detect screen resolution of a user and if it not 800x600 then it will change automatically to 800x600.
Thanks
Posted by A on Monday, 03.7.05 @ 05:27am | #383
I don't think you understand the concept of resolution. You cannot change the visitors resolution. Resolution is how many pixels can fit on the screen. 800pixels wide for a 19in monitor will create bigger pixels than 800pixels wide for a 14 in monitor. If the web designer could change the visitors resolution, they could change it to 1x1 (which is 1 block of color for the whole screen).
But you are in luck. 800x600 is pretty much the smallest anyone has. Any larger resolution (such as 1024 by 768), will show your site fine. But a graphic that took up the whole screen on someone elses comp will no only take up 2/3 of the screen.
Posted by Brian Zimmer on Tuesday, 03.8.05 @ 05:42am | #384
Hi im planning on making a 1 page website with its versions of 800x600, 1024,768, 1280x1024 resolution.
how can i modify/ or what can i add to your code to detect the users resolution if ever they fall either on the above resolutions and direct them to each specific webpage with respect to their monitors reolution?
Posted by rykross on Monday, 04.4.05 @ 11:16am | #434
Hi.
I love this simple bit of script, it was just what I was looking for to warn people about screen resolution when they enter my site which requires 1024x768.
I was wodering, is it possible for the script to make a record of the screen resolutions of visitors? I'd like to know if the screen requirement I am specifying is causing a problem to many of my visitors, so a breakdown of who invoked it and why would be great. Perhaps a html page which the script writes a new line to each time or maybe it could email me the result...?
®
Posted by Richard Holt (www.holster.co.uk)on Monday, 06.6.05 @ 09:15am | #560
Hi, Nice script, but I couldnt make it work on firefox, seems to be a problem on
---------------------------------------------
location.href('highres.html')/;
}else{
location.href('lowres.html')/;
}
---------------------------------------------
because the textbox script works fine in firefox, but not the link.
This problem, I noticed in many resolution detect scrpts in javascript, but anyone works fine in firefox, thx bye
Posted by Diego on Tuesday, 07.26.05 @ 08:06am | #624
Hi, Nice script, but I couldnt make it work on firefox, seems to be a problem on
---------------------------------------------
location.href('highres.html')/;
}else{
location.href('lowres.html')/;
}
---------------------------------------------
because the textbox script works fine in firefox, but not the link.
This problem, I noticed in many resolution detect scrpts in javascript, but anyone works fine in firefox, thx bye
Posted by Diego (www.dbdesign.com.ar)on Tuesday, 07.26.05 @ 08:06am | #625
This script is exactly what I need to put on my site! I wasnt to autodetect and autoroute them to the relevant page as determined by their resolution but how do I put the script onto my page? I am using dreamweaver 3! PLEASE SOMEONE TELL ME WHERE I PUT THE CODE IN THE CODE EDITOR
Posted by Chris on Thursday, 07.28.05 @ 03:40pm | #628
Hi guys! I have built a site htp://www.teenyqueen.com and as you can see, I need the front door page to autodetect and auto-reroute visitors to the appropriate resolution page. I have tried these on here but they dont work! Please someone tell me what code to use? Thanks guys, I really appreciate your help
Posted by Chris (http://www.teenyqueen.com)on Sunday, 07.31.05 @ 10:17am | #631
Great tutorial, but the script isn't working in Firefox. The alert tells me that my resolution is 1024x768, no matter what resolution I'm using.
Any ideas?
Posted by Ryan (www.rmfernandez.com)on Friday, 08.26.05 @ 12:10am | #668
Great tutorial, but the script isn't working in Firefox. The alert tells me that my resolution is 1024x768, no matter what resolution I'm using.
Any ideas?
Posted by Ryan (www.rmfernandez.com)on Friday, 08.26.05 @ 12:10am | #669
A simple change in your script is needed as follows:
see that the file names are to be swapped.
lowres.html and highres.html
---------
Forward to resolution specific page
With:
function detect(){
if(screen.width<1280||screen.height<1024){
location.href('lowres.html')/;
}else{
location.href('highres.html')/;
}
}
Posted by Pramod on Monday, 11.7.05 @ 04:19am | #709
I don't know if there's a difference between screen resolution detector code or automatic change viewer's browser screen resolution code, but when I tried your code it doesn't work. My page's size runs on 1280 pixels by 1024 pixels. How can I automatic make the viewer's screen [resolution] to run 1280 pixels by 1024 pixels so it can see my entire page?
Posted by Asakura Hideki on Wednesday, 11.16.05 @ 01:31pm | #726
Asakura,
I've mentioned this a few times before in the comments. It is impossible to change a viewers resolution. Resolution is how many pixels can fit on the screen. 800pixels wide for a 19in monitor will create bigger pixels than 800pixels wide for a 14 in monitor. If the web designer could change the visitors resolution, they could change it to 1x1 (which is 1 block of color for the whole screen). Not all screens can do 1280 by 1024 resolution. As a designer, all we can do is ask a viewer to change their resolution or forward them to resolution specific designs.
Posted by Brian Zimmer on Wednesday, 11.16.05 @ 08:02pm | #727
I am running into a HUGE problem creating a website. When viewing the site on 800x600 it views in the center of the page. When viewing the site on 1024x768 it views on the left side of the page. How do I make the page always appear in the middle?
I have seen many pages accomplish this, but I cannot figure the coding to do it.
Posted by Christopher T. Brons (www.faithcity.org)on Monday, 04.10.06 @ 05:13pm | #969
This looks like it will work for me. I just wanna change the CSS file for different resolutions. But I was wondering what browsers support this detection feature. Did it come out in version 4 NN and IE browsers or v5 or v6?
Posted by Patrick on Friday, 04.14.06 @ 10:54am | #976
Hi! Thanks for the tutorial :)
I was wondering what could go wrong?
I have different sites set up for different screen res users, and I was wondering if this code was full proof in that ALL users with a screen res of 1280x1024 will undoubtedly be directed to site A, and ALL users using anything lower than 1280x1024 will undoubtedly be directed to site B. Are there any circumstances in which this code will fail?
Thanks!!!
Posted by Morgan on Sunday, 05.21.06 @ 05:42pm | #1070
This is what I have found for firefox users:
this seems to work
<SCRIPT LANGUAGE="JavaScript">
browserName = navigator.appName/;
browserVer = parseInt(navigator.appVersion)/;
if (browserName == "Netscape" && browserVer >= 4 || browserName ==
"Microsoft Internet Explorer" && browserVer >= 4)
version = "1"/;
else if (browserName == "Netscape" && browserVer >= 3)
version = "2"/;
else
version = "3"/;
if (version == "1") {
var correctwidth=1024
var correctheight=768
if (screen.width<correctwidth||screen.height<correctheight)
location="lowres.html"
else
location="highres.html"
}
if (version == "2") {
var toolkit = java.awt.Toolkit.getDefaultToolkit()/;
var screen_size = toolkit.getScreenSize()/;
var correctwidth=1024
var correctheight=768
if (screen_size.width<correctwidth||screen_size.height<correctheight)
location="lowres.html"
else
location="highres.html.html"
}
if (version == "3")
location="highres.html.html"
</SCRIPT>
Posted by Jules Moretti (www.wilsonyounger.co.uk)on Tuesday, 05.30.06 @ 08:06pm | #1307
For firefox, use this... both the original and the comment from Jules don't work for me. this I just found does:
<script>
function resRedirect(){
var width = screen.width/;
var res =(((!(640-width))*1)+((!(800-width))*2)+((!(1024-width))*3)+((!(1152-width))*4)+((!(1280-width))*5))/;
if(!(res)) res = 1/;
if (res=='1') // 640 X 400
location.replace('RES-PAGE1.HTML')/;
if (res=='2') // 800 X 600
location.replace('RES-PAGE2.HTML')/;
if (res=='3') // 1024 X 768
location.replace('RES-PAGE3.HTML')/;
if (res=='4') // 1152 X 864
location.replace('RES-PAGE4.HTML')/;
if (res=='5') // 1280 X 720
location.replace('1280.html')/;
else // anything else
location.replace('OTHER_RES.HTML')/;
}
resRedirect()/;
</script>
Posted by morgan anson on Monday, 06.5.06 @ 03:00am | #1469
is it possible to do an onClick with this function ?
Posted by P-O on Wednesday, 06.7.06 @ 05:50am | #1544
sir,
i just designed my website using 1024/768 resolution.I tested on 800/600 resoultion screen.there is problem in adjusting the screen.When i surffing for scripts to auto adjust i found your site and saw the code.I pasted the code and tested.but 2 files "lowres.html"
"highres.html"
missing.kindly send these 2 files to test the resolution.
thanking you sir.
Posted by rnagarjunakumar on Wednesday, 08.9.06 @ 03:37am | #2564
can you send lowres.html and highres.html
for testing
Thanks & Regards
Vijay
Posted by vijay on Thursday, 08.24.06 @ 02:30am | #2584
good
Posted by prabhash (www.prabhash.9k.com)on Tuesday, 09.19.06 @ 01:57am | #2599
If I have an entry page, where the user is asked to click a link to go in the main site, how can I change that link, according to the client's resolution? What I want is something that will change this:
<A HREF="startup-hires.htm">Click here to enter</A>
to
<A HREF="startup-lowres.htm">Click here to enter</a>
according to the clients resolution. Say anything below 1280x1024 goes to low res.
Posted by M1911 on Wednesday, 09.20.06 @ 01:18am | #2600
I designed my website to work with a 1024x768 resolution. It's there a way to automaticaly resize the content in the page whitout making 2+ version of the page?
10x
Posted by lastbullet on Tuesday, 10.24.06 @ 10:07pm | #2635
wow, great, below code only worked for me in both firefox and ie.
function resRedirect(){
var width = screen.width/;
alert(width)/;
var res =(((!(640-width))*1)+((!(800-width))*2)+((!(1024-width))*3)+((!(1152-width))*4)+((!(1280-width))*5))/;
alert(res)/;
if(!(res)) res = 1/;
if (res=='1') // 640 X 400
location.replace('RES-PAGE1.HTML')/;
else if (res=='2') // 800 X 600
location.replace('800.html')/;
else if (res=='3') // 1024 X 768
location.replace('1024.html')/;
else if (res=='4') // 1152 X 864
location.replace('1152.html')/;
else if (res=='5') // 1280 X 720
location.replace('1280.html')/;
else // anything else
location.replace('OTHER_RES.HTML')/;
}
Posted by venkat on Friday, 01.12.07 @ 03:34am | #2712
remove '/' from the above code in each sentence ending with /;
then only it works also dont forget to change body tag to
<body onLoad="resRedirect()/;">
Posted by venkat on Friday, 01.12.07 @ 03:37am | #2713
I need a script that would popup a window depending on the user screen resolution once they click on a link.
For example if the user has a screen resolution of 1024 by 768 or lower they would get a pop up window with say page1.html when they click on the link, but if their screen resolution is 1152 by 864 or higher they get page2.html
Is there a way to modify your script to do this.
Thank you in advance for your help.
Posted by Brady on Tuesday, 01.23.07 @ 09:20am | #2729
<body onLoad="resRedirect()//;">
<script>
function resRedirect(){
var width = screen.width/;
if (width<=1024)
location.replace('low/index.html')/;
else // anything else
location.replace('high/index.html')/;
}
resRedirect()/;
</script>
Working great on Safari, Firefox, IE, and Opera
Posted by Leandro on Wednesday, 01.24.07 @ 07:16am | #2731
the script doesn't work on me.. I adjust me screen resolution to 800x600, and it doesn't redirect.. how come?
I placed this inside my header:
<script type="text/javscript">
function resRedirect(){
var width = screen.width//;
if (width<=1024)
location.replace('low/index.html')//;
else // anything else
location.replace('high/index.html')//;
}
resRedirect()//;
</script>
then inside my body tag:
<body onLoad="resRedirect()//;">
....
it doesn't seem to work.. Is there something wrong ? :( please i hope someone will reply :(
Posted by Jehzeel (http://jehzlau.blogspot.com)on Thursday, 04.5.07 @ 12:35pm | #2830
btw., it works now.. i just changed my .php to .html extension.. hehe.. it doesn't work in php :(
Posted by Jehzeel (http://jehzlau.blogspot.com)on Thursday, 04.5.07 @ 01:07pm | #2831
To all of you that have requested the missing files "lowres.html" and "highres.html"
1.
Open your web page editor and then select
File / New, then type some text on it such as "LOWRES" then go to the File menu and press Save and save it as "lowres.html"
2.
Then edit the text to "HIGHRES" then go to the File menu and press Save As and name it "highres.html"
Simple...
On a side note most users do not know what a resolution is including some people here (the ones that asked how to change a users resolution to match thier site)
So having links on a start up page that ask the user to choose Low res or high res is kinda pointless.
If you want a true site that resizes it self and is totaly resolution independant learn CSS.
Do a search for CSS liquid page designs, these designs will automatically change size without using javascript and when you Restore Down.
Samples:
http://www.maxdesign.com.au/presentation/page_layouts/
Goodluck.
Posted by Stu (http://www.hairypost.com)on Sunday, 04.8.07 @ 09:12am | #2836
WOW Nice very useful nice clap clap for you thx bro!
Posted by Xxchaos-systemxX (http://h4x0rs.789mb.com)on Tuesday, 07.24.07 @ 12:07am | #2951
Hi.
I've been looking for this type of code for the past 3 days. I'm trying to get code to make my site mobile phone friendly. I want mobile phone browsers to automatically goto the /mobileversion of my site.
I've added your code and it works on the PC, but when I try and make my mobile go to the small version. It just stays on the main entry page.
Do I need to do anything different if I'm coding the site for mobile phones?
Posted by Leroy (http://www.lee-osullivan.com/mobiletest/)on Tuesday, 09.4.07 @ 11:35am | #3006
Can anyone please help me out!!! I'm very new to HTML and I created a website using HTML. I need a script that can help me set up all resolutions on one page. Thank you very much!!
Posted by Jason (www.relyad.com)on Wednesday, 11.14.07 @ 01:12pm | #3075
fthdfdgh
Posted by swapnil mantri on Monday, 12.17.07 @ 01:48am | #3128
http://www.hackersgroupofindia.blogspot.com/
Posted by a (http://www.hackersgroupofindia.blogspot.com/)on Friday, 01.25.08 @ 11:08am | #3166
Bravo to everyone asking how to change a visitor's resolution and special thanks to the W3C for not allowing it by specification :)
Regarding the redirection to lowres.html and highres.html, I would actually suggest to include a different CSS for high resolution and low resolution, because this reduces the overhead of doubling the HTML code.
Also, it is possible to include different images on the page depending on the visitors resolution. Lets say we have a div tag that holds the image :
<div>
<script type="text/javascript">
if (screen.width<1280||screen.height<1024)
{
document.write("<img src=\"images/low_res_image.gif\" alt=\"\" border=\"0\" />")/;
}
else
{
document.write("<img src=\"images/high_res_image.gif\" alt=\"\" border=\"0\" />")/;
}
</script>
</div>
images/low_res_image.gif and
images/high_res_image.gif are arbitrary images.
I did not tested the code above, but it should work in all major browsers.
By the way, the same may be achieved by setting the images low_res_image.gif and high_res_image.gif as backgrounds of the div that holds them in two different CSS files (say low_res.css and high_res.css). Then, as I mentioned at the beginning, it is possible to include one of the CSS files depending on the visitor's resolution.
Cheers
and learn CSS:) it's worth it, really :))
Posted by fizilla on Thursday, 02.7.08 @ 03:38am | #3187
hi
Posted by advait (sdas)on Thursday, 03.20.08 @ 04:39am | #3255
it is really good one...
Posted by Vishnu (www.gmail.com)on Tuesday, 03.25.08 @ 07:01am | #3261
it is really good one...
Posted by Vishnu (www.gmail.com)on Tuesday, 03.25.08 @ 07:01am | #3262
..the tutorial didn't work for me.. but the Leandro comments definitely saved my day..
Posted by brianhujung (google.com)on Thursday, 04.10.08 @ 10:22am | #3291
ok
Posted by fatima (fatima)on Wednesday, 04.16.08 @ 10:05pm | #3296
I always design my pages for 800x600 screen resolutions. That way it shows full screen for users with 800x600 rez. Unfortunately my pages appear too small on a 1024x768 rez monitor.
So the best possible script for me, would be a script that determine's the user's screen rez, and 'zooms' the browser so that it shows full screen on all monitors. For example, at about 125% zoom level, my 800x600 designed pages appear full-screen on a 1024x768 monitor.
The script would 1) detect the user's screen rez, then 2) zoom the browser by the designated % so that 800x600 pages are full-screen on 1024x768 monitors as well (or higher zoom % for higher screen resolutions).
The question is, can a script direct IE7 (or other browsers) to open the page at a designated zoom % level? Even better, might be a script with variables ~ for everyone to use ~ even allowing a 640x480 page to show full screen on a 1024x768 monitor, by zooming it about 160%. Etc.
Is this possible or a pipe dream?
Posted by Michael Starr (http://ForeverBeach.com)on Saturday, 05.24.08 @ 08:30am | #3373
can u please wipe my ass for me?
i cant reach around and get the kernals out.
fuckfaces.
8)
Posted by dildo on Thursday, 07.3.08 @ 12:38pm | #3447
I don't mean to be negative, but you seriously need to fix your spelling errors!
And who in the world could possibly still have 640x480 resolution (not counting mobile devices)??
Time to UPDATE!
Posted by Marcy on Wednesday, 07.23.08 @ 01:19pm | #3496
Thank you men your the best now i can stop making flash sites and centering them.
Posted by FIGHTEX (http://fightex12.we.bs)on Sunday, 11.2.08 @ 11:30am | #3728
I type it this then save as index.html then i make a new file 1024.html and just wright in some blank text. and i open the index.html it dosent work:\
<html>
<head>
<script>
function resRedirect(){
var width = screen.width//;
alert(width)//;
var res =(((!(640-width))*1)+((!(800-width))*2)+((!(1024-width))*3)+((!(1152-width))*4)+((!(1280-width))*5))//;
alert(res)//;
if(!(res)) res = 1//;
if (res=='1') // 640 X 400
location.replace('RES-PAGE1.HTML')/;
else if (res=='2') // 800 X 600
location.replace('800.html')/;
else if (res=='3') // 1024 X 768
location.replace('1024.html')/;
else if (res=='4') // 1152 X 864
location.replace('1152.html')/;
else if (res=='5') // 1280 X 720
location.replace('1280.html')/;
else // anything else
location.replace('OTHER_RES.HTML')/;
}
</script>
</head>
<body onLoad="resRedirect()//;">
</body>
</html>
Posted by FIGHTEX (http://fightex12.we.bs)on Sunday, 11.2.08 @ 11:39am | #3729
Could some one send me and e-mail on fightex12@hotmail.com, how to do this. Pleas:!
<html>
<head>
<script>
function resRedirect(){
var width = screen.width/;
var res =(((!(640-width))*1)+((!(800-width))*2)+((!(1024-width))*3)+((!(1152-width))*4)+((!(1280-width))*5))/;
if(!(res)) res = 1/;
if (res=='1') // 640 X 400
location.replace("RES-PAGE1.HTML")/;
if (res=='2') // 800 X 600
location.replace("RES-PAGE2.HTML")/;
if (res=='3') // 1024 X 768
location.replace("index4.HTML")/;
if (res=='4') // 1152 X 864
location.replace("RES-PAGE4.HTML")/;
if (res=='5') // 1280 X 720
location.replace("1280.html)"/;
else // anything else
location.replace("OTHER_RES.HTML")/;
}
resRedirect()/;
</script>
</head>
<body onLoad="resRedirect()/;">
bla
</body>
</html
:!
Posted by fightex (http://fightex12.we.bs)on Sunday, 11.2.08 @ 11:55am | #3730
I've been battling with this for ages now, save yourself the headache and go here. This site spits out code from a GUI = no fail!
http://www.echoecho.com/toolscreenresolutionredirect.htm
Posted by Samuel on Sunday, 11.9.08 @ 01:06pm | #3752
Just use this: http://www.echoecho.com/toolscreenresolutionredirect.htm
Posted by Samuel (www.meta.projectmio.com)on Monday, 12.1.08 @ 11:05am | #3812
Is this code useable to instead of replacing HTML pages use a different css stylesheet which will pre laid out with the resolution in mind once detected
Posted by paul on Wednesday, 01.28.09 @ 06:10am | #3935
Is this code useable to instead of replacing HTML pages use a different css stylesheet which will pre laid out with the resolution in mind once detected
Posted by paul on Wednesday, 01.28.09 @ 06:10am | #3936
<a title="PA3396U-1ACA" href="javascript:go('http://www.sunvalleyus.com/ToshibaAdapter/PA3396U-1ACA.html')">PA3396U-1ACA</a>(19V
3.42A)<br />
<a title="Compaq DV2000 battery" href="javascript:go('http://www.sunvalleyus.com/HpBattery/DV2000.html')">Compaq DV2000 battery</a>
(10.8V)<br />
<a title="LP154WX4" href="javascript:go('http://www.sunvalleyus.com/Panel154Inch/LP154WX4.html')">LP154WX4</a>(15.4 inch)<br />
<a title="HP ze4900 battery" href="javascript:go('http://www.sunvalleyus.com/HpBattery/Pavilion-ze4900-Series.html")">HP ze4900
battery</a>(14.8V )<br />
<a title="javascript:go('Apple A1185 Battery" href="http://www.sunvalleyus.com/AppleBattery/Original-A1185.html')">Apple A1185
Battery</a>(10.8V )<br />
<a title="javascript:go('Dell 9400 battery" href="http://www.sunvalleyus.com/DellBattery/Inspiron-9400-Series.html')">Dell 9400
battery</a>(11.1V )<br />
<a title="javascript:go('IBM R60 9455 battery" href="http://www.sunvalleyus.com/IBMBattery/IBM-ThinkPad-R60-9455.html')">IBM R60
9455 battery</a>(7200mAh )<br />
<a title="Dell D630 battery" href="javascript:go('http://www.sunvalleyus.com/DellBattery/Latitude-D630-series.html')">Dell D630
battery</a>(11.1V )<br />
Posted by rose (http://www.sunvalleyus.com)on Tuesday, 02.3.09 @ 12:32am | #3960
hi,guy this site runescape-money.eu it is about online game's web,we offer the news and important cheats,The main we sell runescape gold,if u want to buy runescape money,u need buy runescape gold from this site,it is cheapest,right,u want buy runescape gold,cheap runescape gold,plz click here:runescape gold,it is cool,isn't it?everyone who play runescape and want buy runescape gold can get some help from our.we We have mass available stock of runescape money on most of the servers, so that we can do a really instant way of runescape money delivery.We know what our buyers need so we offer an instant way of cheap cheap runescape gold, the cheapest runescape money delivery.lol…
Posted by Anonym on Sunday, 04.12.09 @ 11:41pm | #4262
<a title="scooter battery charger" href="http://www.papatek.com/Shop/Search.asp?Field=ProductName&keyword=scooter%20battery%20charger&Submit=+%CB%D1%CB%F7+">scooter battery charger</a>(high quality )<br /><a title="Toshiba PA3467U-1ACA AC Adapter 19V 3.42A" href="http://www.papatek.com/Toshiba-Adapter/Toshiba-PA3467U-1ACA-AC-Adapter-19V-3.42A.html">Toshiba PA3467U-1ACA AC Adapter 19V 3.42A</a>(DC19V 3.42A Power: 65W )<br /><a title="Liteon PA-1650-01 AC Adapter" href="http://www.papatek.com/Liteon-Adapter/Liteon-PA-1650-01-AC-Adapter.html">Liteon PA-1650-01 AC Adapter</a>(DC19V 3.42A Power: 65W )<br /><a title="LCD Adapter 12V 5A" href="http://www.papatek.com/LCD-AC-Adapter/LCD-Adapter-12V-5A.html">LCD Adapter 12V 5A</a>(DC12V 5A Power: 60W )<br /><a title="Dell XG900 keyboard" href="http://www.papatek.com/Dell-Keyboard/Dell-XG900-keyboard.html">Dell XG900 keyboard</a>(Genuine and new! )<br /><a title="Gateway K020303D4 Keyboard Original" href="http://www.papatek.com/Gateway-Keyboard/Gateway-K020303D4-Keyboard-Original.html">Gateway K020303D4 Keyboard Original</a>(Genuine and new! )<br /><a title="Gateway ADP-65HB AC Adapter" href="http://www.papatek.com/Gateway-Adapter/Gateway-ADP-65HB-AC-Adapter.html">Gateway ADP-65HB AC Adapter</a>(DC19V 3.42A Power: 65W )<br /><a title="Dell Latitude D620 battery" href="http://www.papatek.com/Dell-Battery/Dell-Latitude-D620-battery.html">Dell Latitude D620 battery</a>(4400mAh)<br /><a title="Dell PSCV360104A LCD AC Adapter 12V 3A" href="http://www.papatek.com/LCD-AC-Adapter/Dell-PSCV360104A-LCD-AC-Adapter-12V-3A.html">Dell PSCV360104A LCD AC Adapter 12V 3A</a>(AC100-240V Output: DC12V 3A )<br /><a title="Dell UC172 keyboard" href="http://www.papatek.com/Dell-Keyboard/Dell-UC172-keyboard.html">Dell UC172 keyboard</a>(Genuine and new! )<br /><a title="HP OK066B13 AC Adapter" href="http://www.papatek.com/HP-Adapter/HP-OK066B13-AC-Adapter.html">HP OK066B13 AC Adapter</a>(AC100-240V Output: DC19V 3.42A )<br /><a title="Toshiba PA-1121-08 AC Adapter" href="http://www.papatek.com/Toshiba-Adapter/Toshiba-PA-1121-08-AC-Adapter.html">Toshiba PA-1121-08 AC Adapter</a>(AC100-240V Output: DC19V 6.3A )<br /><a title="Toshiba PA3201U-1ACA AC Adapter" href="http://www.papatek.com/Toshiba-Adapter/Toshiba-PA3201U-1ACA-AC-Adapter.html">Toshiba PA3201U-1ACA AC Adapter</a>(AC100-240V Output: DC15V 5A )<br /><a title="Samsung SyncMaster 770 TFT LCD AC Adapter 12V 3A" href="http://www.papatek.com/LCD-AC-Adapter/Samsung-SyncMaster-770-TFT-LCD-AC-Adapter-12V-3A.html">Samsung SyncMaster 770 TFT LCD AC Adapter 12V 3A</a>(AC100-240V Output: DC12V 3A )<br />
Posted by laptop accessories (http://www.papatek.com)on Wednesday, 04.29.09 @ 12:27am | #4331
[url=http://www.papatek.com/Shop/Search.asp?Field=ProductName&keyword=scooter%20battery%20charger&Submit=+%CB%D1%CB%F7+]scooter battery charger[/url] (high quality ) Toshiba PA3467U-1ACA AC Adapter 19V 3.42A (DC19V 3.42A Power: 65W ) Liteon PA-1650-01 AC Adapter (DC19V 3.42A Power: 65W ) LCD Adapter 12V 5A (DC12V 5A Power: 60W ) Dell XG900 keyboard (Genuine and new! ) Gateway K020303D4 Keyboard Original (Genuine and new! ) Gateway ADP-65HB AC Adapter (DC19V 3.42A Power: 65W ) Dell Latitude D620 battery (4400mAh) Dell PSCV360104A LCD AC Adapter 12V 3A (AC100-240V Output: DC12V 3A ) Dell UC172 keyboard (Genuine and new! ) HP OK066B13 AC Adapter (AC100-240V Output: DC19V 3.42A ) Toshiba PA-1121-08 AC Adapter (AC100-240V Output: DC19V 6.3A ) Toshiba PA3201U-1ACA AC Adapter (AC100-240V Output: DC15V 5A ) Samsung SyncMaster 770 TFT LCD AC Adapter 12V 3A (AC100-240V Output: DC12V 3A )
Posted by laptop accessories (http://www.papatek.com)on Wednesday, 04.29.09 @ 12:28am | #4332
http://www.t7b.com
http://www.chaat.t7b.com
http://www.voice.t7b.com
http://www.games.t7b.com
http://www.gallery.t7b.com
http://www.video.t7b.com
http://www.mob.t7b.com
http://www.topics.t7b.com
http://www.islame.t7b.com
http://www.translate.t7b.com
http://mnw3at.wordpress.com
Posted by t7b.com on Tuesday, 05.12.09 @ 07:48am | #4394
Followed by dog training in secret in February 2, 2009,/; it has been repaired training your dog and was formally launched. This is the best-selling puppy training course for four years, and it was bought 64,000 dog owners worldwide. It was remarkable to recall the details of puppies training, I can fully understand why it continues to hold top spot. The revamped version promises are better! Puppy obedience training is an extremely comprehensive guide, written by world renowned coaches make, Daniel Stevens. Although the Guide to training a dog moving to 261 detailed, step-by-step format it to provide direct instructions on how to quickly training a puppy and resolve dog behavior problems. It also includes many excellent pictures! In the book, it describes how to train a puppy. All loyal and reliable methods of dog behavior training and dog training tips are tried.
Several different methods outlined in the course of dog obedience training, including the wooden box training, training, dog whispering, and so on. Secondly, teach dog tricks. More advanced behavioral problems, such as chewing, biting, aggression, digging, jumping, etc. are covered. We all love dogs training!
If you are like many new mothers, you want to lose weightas soon as possible. However, there are some fat here and there, so you actually have to learn how to lose weight after a baby.
Weight loss after the baby more easily than you imagined, but it is more difficult to see from another perspective: You have to take good care of your newborn baby, so the question of How to lose weight after the baby was your second priority.
I have been looking for solutions on how to lose weight after baby/; I got so many weight loss experiences after giving birth! Therefore, I will share some of the most important tips to answer your questions.
How to lose weight after the baby - 4 simple tips
1) Breastfeeding is the most important, not only is your baby - breastfeeding help lose weight fast! Your baby, "/;eat"/; your unnecessary heat, together with the milk from you.
2) Loss weight diet - this will make you lose weightand keep your body hydrated.
3) Walk out with your baby can now. These are good ways to lose weight, she, you will burn more calories!
4) How to lose pounds after the baby? Have enough rest! It will not directly affect your weight, but still have a great impact. When you and the rest, your body metabolism, and if the metabolism is good, you are more likely to lose pounds more easily.
Prevalence of teenage belly fat in developed countries such as the United States is appalling. 1 6-year-old in the United States to have a weight problem to some extent, with the majority of these young people's personal growth is unhealthy. The best way to get rid of belly fat can happen to them, they will be overweight and low productivity of adults and the most serious could happen is that they will lose belly fat.
This situation is quite alarming. If you are juvenile weight problems, you have to put it head-on now, because your body settles mature, more and more difficult to get rid of belly fat.
Many have written about how to lose belly fat which is unusual/; we can see that different sources give different views. But the fact of belly fat diet is that young people lose abdominal fat is not all the difficulties, because their body is still healthy and growing. Belly fat exercises and belly fat dietcan help them lose their belly fat and lead a healthy life a few decades ago.
When you find kids jobs can be a difficult task. If you are looking for jobs for kids, you can do from home then this is it. If you do not want to work at home, know that you work in other parts of the parent / parents will drive and pick you up. Who are you to deal with the boss/; I can almost guarantee jobs for 15 year olds. I am 16 years old, I have a lot of job opportunities for you to find jobs for kids and your pay check.
Some decent work is bus tables, help customers in retail stores like Circuit City or Best Buy, if you live in the park or the scope of help the horses can be too much of a decent work. The majority of jobs for 16 year oldsare helping the animals. I made a good amount of money to cut grass around, but my neighbor's lawn companies can price it is really difficult to introduce competition. If you are a good local computer repair shop computer is bound to employ the help of jobs for 15 year olds.
When running a home business to make money, there are many making money ideas you want to have to concentrate. From writing the content, in order to promote your business to deal with customers will be on your list. However, the important thing is that you are not starting your own business by ignoring the importance of design quality.
If you want to know how to make money at home web site, you must understand the design, your site can have a significant impact. First of all, make money online. Make Money on the Internet is the first thing people will see the arrival of your site. You want it to stand out so boldly Japan. Try to make money with a catchy phrase or something to attract people to read.
From there, you would like to emphasize a specific keyword or title of the site. Most people will not take the time to read all the content on your site. Highlight specific words, people will be able to quickly find information of interest to them
You must emphasize the benefits of starting a laundromat business. People are more interested in is how you will benefit from the provision of the opposition/; you can set up shop online a large number of specific details of your company. Maintain Furniture Making Business its customers.
Prompted the design of the next how to make money online is to allow all distribution. More chaotic look of your site within a short period of time, people will spend double-check everything. This is good advertising and graphics, and all attempts to spread. To too many making money ideas on the site will only turn off your visitors.
Is important that you have a good balance between the graphics and content, as well as. You do not want to start flower shop. In contrast, the exchange of the two should be uniform, so that smooth flow of your pages.
Finally, how to make money at home, start carpet cleaning business: Your web site somewhere so that people can easily find it. You want visitors to easily contact you any questions they may be. This shows that you are a professional in starting your own business.
Brining a new dog into your home is an exciting time for the whole family, not to mention the dog. The first dog training supplies you should buy, before you even bring the dog home, are a food and water bowl, collar, leash, food and a bed. If you have another dog in the home and were thinking of having them both share a bowl, think dog training products again. Sometimes a new dog can be aggressive, or be attacked when trying to feed in a joint bowl. It's best to let the dog know what is his , for food and water.
There are different types of anti bark collar. One type is remote dog collar. As the name suggests, it is used to stop a dog from constant, inappropriate barking. This collar is triggered by the dogs bark. remote bark collar works by either a vibration or a sound that is felt or heard by the dog the instant the barking starts. It can be set to different levels and responds only to your dogs bark. There are also dog bark collar that work by spraying an unpleasant spray towards the dogs face as soon as he starts barking.
Selecting a underground dog Fence or pet fence to install your self at your home can be very confusing. Most of the market is Dominated by Radio Systems Corporation. They are the makers of PetSafe, InvisibleFence, and Innotek. While these products do well at containing a dog within a in ground dog fence they do have their limitations. First the country of manufacture is China. Sometimes there is a problem with consistency of signal, the signal will expand or contract based on temperature, not all of these systems exhibit this problem, but it does exist.
Oil painting reproduction is an affordable way to display replicas of favorite works of art in the home or workplace. If you want to wholesale oil painting, A large number of companies in the US provide reproductions of almost any work of art at a surprisingly affordable price. A good reproduction can fool even the trained eye, and is far more appealing and visually satisfying than a paper reprint of any work of art.
Posted by qixinyan on Tuesday, 05.19.09 @ 07:20pm | #4508
http://www.chat.t7b.com/1.htm
http://www.chat.t7b.com/2.htm
http://www.chat.t7b.com/3.htm
http://www.chat.t7b.com/4.htm
http://www.chat.t7b.com/7.htm
http://www.chat.t7b.com/8.htm
http://www.chat.t7b.com/13.htm
http://www.chat.t7b.com/146.htm
http://www.chat.t7b.com/54.htm
http://www.chat.t7b.com/119.htm
http://www.chat.t7b.com/124.htm
http://www.chat.t7b.com/159.htm
http://www.chat.t7b.com/206.htm
http://www.chat.t7b.com/249.htm
http://www.ksall.com
http://www.ksall.com/vb
Posted by fsd on Saturday, 05.23.09 @ 05:16am | #4586
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
jobs for 14 year olds
Saraideas's Blog
Sara ideas
saraideas
saraideas
saraideas
saraideas
saraideas
saraideas
saraideas
Sara's Blog
sara's Site
Saraideas
saraideas
Posted by kids jobs on Saturday, 06.20.09 @ 01:11am | #4941
www.wikishoes.com
Jordan shoes
Air Jordan Shoes
Nike SB Dunks
Addia shoes
Handbag
Chanel Handbag
Fendi Handbag
LV shoes
Louis Vuitton sandals
ED hardy hoodies
ED hardy jeans
ED hardy belts
play boy underwear
bikini
Hoodies
Posted by ANGYA (http://www.wikishoes.com)on Sunday, 06.21.09 @ 06:47pm | #5001
Toshiba PA3467U-1ACA AC Adapter 19V 3.42A (DC19V 3.42A Power: 65W ) Apple A1021 AC Adapter (AC100-240V) Portable Floppy Disk Drive (USB1.1 ) HP PA-1900-18H2 AC Adapter (AC100-240V ) Acer 6500878 AC Adapter (AC100-240V) IBM 02K6555 AC Adapter (AC100-240V) HP F4814a AC Adapter (AC100-240V ) Acer AL1714 LCD adapter (AC100-240V ) Dell Latitude D600 DVD RW BURNER (Replacement ) Toshiba PA2450U AC Adapter (AC100-240V) Acer KB.ACF07.001 Keyboard (Original ) HP 436281-141 battery (Original ) LP154WX4-TLCA LCD Panel 15.4 inch (Replacement ) Liteon PA-1650-01 AC Adapter (DC19V 3.42A Power: 65W ) LCD AC Adapter 12V 3.5A (DC12V 3.5A ) Compaq PA-1651-02C AC Adapter (DC18.5V 3.5A) LCD Adapter 12V 5A (DC12V 5A Power: 60W ) Gateway K020303D4 Keyboard (Genuine and new! ) Dell XG900 keyboard (Genuine and new! ) Gateway ADP-65HB AC Adapter (DC19V 3.42A Power: 65W ) Compaq 298239-001 AC Adapter (Input: AC100-240V (worldwide use) Output: DC19V 4.74A ) Dell 0TD459 keyboard (Genuine and new! ) Gateway API3AD03 AC adapter (AC100-240V (worldwide use) Output: DC19V 3.42A ) HP Pavilion DV9000 AC Adapter (AC100-240V (worldwide use) Output: DC19V 4.74A ) Dell Latitude D620 AC Adapter (AC100-240V (worldwide use) Output: DC19.5V 3.34A ) Toshiba PA3469U-1ACA AC Adapter (Input: AC100-240V (worldwide use) Output: DC15V 5A ) Dell 3K360 AC Adapter 20V 4.5A (AC100-240V (worldwide use) Output: DC20V 4.5A ) Dell LCD 0R0423 AC Adapter (AC100-240V (worldwide use) ) HP TX1000 keyboard (Genuine and new! ) Dell Inspiron 6400 battery (11.1V Capacity: 6600mAh ) Dell 0NK750 keyboard (11.10V /; 4400 mAh ) Dell H5639 keyboard (Genuine and new! ) Acer Aspire One A110 LCD Panel (8.9 inchs ) Toshiba PA3465U-1BRS battery original (10.8V ) Apple KZ6313T1USAA keyboard (Genuine and new! ) Apple KZ6313T1USAA keyboard white (Genuine and new! ) Dell Inspiron 1520 Battery (11.1V ) Acer Aspire 3050 battery (11.1V ) Apple MA566 Battery black (10.8V )
Posted by laptop accessories (http://www.papatek.com)on Monday, 06.22.09 @ 02:30am | #5045
http://www.ksall.com/vb/showthread.php?t=3650
http://www.ksall.com/vb/showthread.php?goto=newpost&t=3651
http://www.ksall.com/vb/showthread.php?goto=newpost&t=3652
http://www.ksall.com/vb/showthread.php?goto=newpost&t=3653
http://www.ksall.com/vb/showthread.php?p=26757#post26757
http://www.ksall.com/vb/showthread.php?p=26758#post26758
http://www.ksall.com/vb/showthread.php?p=26760#post26760
http://www.ksall.com/vb/showthread.php?p=26762#post26762
http://www.ksall.com/vb/showthread.php?p=26764#post26764
http://www.ksall.com/vb/showthread.php?t=3621
http://www.ksall.com/vb/showthread.php?p=26767#post26767
http://www.ksall.com/vb/showthread.php?p=26768#post26768
http://www.ksall.com/vb/showthread.php?p=26771#post26771
http://www.ksall.com/vb/showthread.php?p=26772#post26772
http://www.ksall.com/vb/showthread.php?p=26772#post26772
http://www.ksall.com/vb/showthread.php?p=26773#post26773
http://www.ksall.com/vb/showthread.php?p=26774#post26774
http://www.ksall.com/vb/showthread.php?p=26774#post26774
http://www.ksall.com/vb/showthread.php?p=26790#post26790
http://www.ksall.com/vb/showthread.php?p=26794#post26794
http://www.ksall.com/vb/showthread.php?p=26798#post26798
http://www.ksall.com/vb/showthread.php?p=26800#post26800
http://www.ksall.com/vb/showthread.php?p=26802#post26802
http://www.ksall.com/vb/showthread.php?p=26803#post26803
http://www.ksall.com/vb/showthread.php?p=26804#post26804
http://www.ksall.com/vb/showthread.php?p=26810#post26810
http://www.ksall.com/vb/showthread.php?p=26812#post26812
http://www.ksall.com/vb/showthread.php?p=26813#post26813
http://www.ksall.com/vb/showthread.php?p=26859#post26859
http://www.ksall.com/vb/showthread.php?p=26860#post26860
http://www.ksall.com/vb/showthread.php?p=26861#post26861
http://www.ksall.com/vb/showthread.php?p=26862#post26862
http://www.ksall.com/vb/showthread.php?p=26863#post26863
http://www.ksall.com/vb/showthread.php?p=26866#post26866
http://www.ksall.com/vb/showthread.php?p=26868#post26868
http://www.ksall.com/vb/showthread.php?p=26870#post26870
http://www.ksall.com/vb/showthread.php?p=26873#post26873
http://www.ksall.com/vb/showthread.php?t=3487
http://www.ksall.com/vb/forumdisplay.php?f=9
http://www.ksall.com/vb/forumdisplay.php?f=30
http://www.ksall.com/vb/forumdisplay.php?f=8
http://www.ksall.com/vb/showthread.php?p=26913#post26913
http://www.ksall.com/vb/forumdisplay.php?f=16
http://www.ksall.com/vb/showthread.php?p=26914#post26914
http://www.ksall.com/vb/showthread.php?p=26915#post26915
http://www.ksall.com/vb/showthread.php?p=26916#post26916
http://www.ksall.com/vb/showthread.php?p=26917#post26917
http://www.ksall.com/vb/showthread.php?goto=newpost&t=3703
http://www.ksall.com/vb/showthread.php?p=26929#post26929
http://www.ksall.com/vb/showthread.php?p=26930#post26930
http://www.ksall.com/vb/showthread.php?p=26933#post26933
http://www.ksall.com/vb/showthread.php?p=27004#post27004
http://www.ksall.com/vb/showthread.php?p=27005#post27005
http://www.ksall.com/vb/showthread.php?p=27006#post27006
http://www.ksall.com/vb/showthread.php?p=27007#post27007
http://www.ksall.com/vb/showthread.php?p=27008#post27008
http://www.ksall.com/vb/showthread.php?p=27009#post27009
http://www.ksall.com/vb/showthread.php?p=27010#post27010
http://www.ksall.com/vb/showthread.php?p=27011#post27011
http://www.ksall.com/vb/showthread.php?p=27012#post27012
http://www.ksall.com/vb/showthread.php?p=27013#post27013
http://www.ksall.com/vb/showthread.php?p=27014#post27014
http://www.ksall.com/vb/showthread.php?p=27015#post27015
http://www.ksall.com/vb/showthread.php?p=27016#post27016
http://www.ksall.com/vb/showthread.php?p=27034#post27034
http://www.ksall.com/vb/showthread.php?p=27058#post27058
http://www.ksall.com/vb/showthread.php?p=27068#post27068
http://www.ksall.com/vb/showthread.php?p=27077#post27077
Posted by sdf on Saturday, 06.27.09 @ 11:56am | #5245
Rate this Tutorial
Current Rating: